Skip to content

Commit 0e3ba56

Browse files
committed
Switch export to use GB, not M raw reads
1 parent a9b9fe9 commit 0e3ba56

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

singlecell/resources/web/singlecell/panel/LibraryExportPanel.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ Ext4.define('SingleCell.panel.LibraryExportPanel', {
857857
data.push(size);
858858
data.push('Others'); //Library Status
859859
data.push(totalData); //Total data
860-
data.push('M raw reads');
860+
data.push('G raw data');
861861
data.push(r[fieldName + '/concentration'] || '');
862862
data.push(defaultVolume);
863863

@@ -874,10 +874,10 @@ Ext4.define('SingleCell.panel.LibraryExportPanel', {
874874

875875
var delim = instrument.startsWith('Novogene') ? '\t' : ',';
876876
Ext4.Array.forEach(sortedRows, function (r) {
877-
processType(readsetIds, rows, r, 'readsetId', 'GEX', 500, 0.01, 'G', null, false, 225, runMap);
878-
processType(readsetIds, rows, r, 'tcrReadsetId', 'TCR', 700, 0.01, 'T', null, false, 150, runMap);
879-
processType(readsetIds, rows, r, 'hashingReadsetId', 'HTO', 182, 0.05, 'H', 'Cell hashing, 190bp amplicon. Please QC individually and pool in equal amounts per lane', true, 75, runMap);
880-
processType(readsetIds, rows, r, 'citeseqReadsetId', 'CITE', 182, 0.05, 'C', 'CITE-Seq, 190bp amplicon. Please QC individually and pool in equal amounts per lane', false, 75, runMap);
877+
processType(readsetIds, rows, r, 'readsetId', 'GEX', 500, 0.01, 'G', null, false, 70, runMap);
878+
processType(readsetIds, rows, r, 'tcrReadsetId', 'TCR', 700, 0.01, 'T', null, false, 45, runMap);
879+
processType(readsetIds, rows, r, 'hashingReadsetId', 'HTO', 182, 0.05, 'H', 'Cell hashing, 190bp amplicon. Please QC individually and pool in equal amounts per lane', true, 20, runMap);
880+
processType(readsetIds, rows, r, 'citeseqReadsetId', 'CITE', 182, 0.05, 'C', 'CITE-Seq, 190bp amplicon. Please QC individually and pool in equal amounts per lane', false, 20, runMap);
881881
}, this);
882882

883883
//add missing barcodes:

0 commit comments

Comments
 (0)