Skip to content

Commit 755e046

Browse files
committed
Automatically pick BioLegend when combining hashing and CITE-seq
1 parent e8a6b50 commit 755e046

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

singlecell/resources/web/singlecell/panel/PoolImportPanel.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,15 @@ Ext4.define('SingleCell.panel.PoolImportPanel', {
510510
xtype: 'checkbox',
511511
fieldLabel: 'Combine Hashing and Cite-Seq Libraries',
512512
itemId: 'combineHashingCite',
513-
checked: false
513+
checked: false,
514+
listeners: {
515+
change: function(field, val) {
516+
if (val) {
517+
// The combined library only makes sense if using BioLegend:
518+
field.up('panel').down('#hashingType').setValue('BioLegend');
519+
}
520+
}
521+
}
514522
},{
515523
xtype: 'checkbox',
516524
fieldLabel: 'Require Library Concentrations',

0 commit comments

Comments
 (0)