Skip to content

Commit 16fc136

Browse files
committed
Improve data QC
1 parent 2119260 commit 16fc136

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

singlecell/resources/queries/singlecell/samples.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,12 @@ function beforeUpsert(row, oldRow, errors){
6262
if (['Lung R', 'Lung Right', 'Lung-Right'].indexOf(row.tissue) !== -1){
6363
row.tissue = 'Lung-R';
6464
}
65+
66+
if (['Bulk', 'bulk'].indexOf(row.assaytype) !== -1){
67+
row.assaytype = 'Bulk cells';
68+
}
69+
70+
if (['Peptide Stim-BFA', 'Peptide stim-BFA'].indexOf(row.assaytype) !== -1){
71+
row.assaytype = 'Peptide Stim - BFA';
72+
}
6573
}

0 commit comments

Comments
 (0)