Skip to content

Commit 3da91fa

Browse files
committed
Support scatter/gather for liftover
1 parent 175d28d commit 3da91fa

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

SequenceAnalysis/resources/web/SequenceAnalysis/window/LiftoverWindow.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,10 @@ Ext4.define('SequenceAnalysis.window.LiftoverWindow', {
175175
params.doNotRetainUnmapped = this.down('#doNotRetainUnmapped').getValue();
176176
}
177177

178+
Ext4.Array.forEach(this.down('sequenceanalysis-variantscattergatherpanel').query('field'), function(field){
179+
params[field.name] = field.getValue();
180+
}, this);
181+
178182
Ext4.Msg.wait('Saving...');
179183
LABKEY.Ajax.request({
180184
url: LABKEY.ActionURL.buildURL('sequenceanalysis', 'runSequenceHandler', this.containerPath),

singlecell/resources/views/singleCellDataManagement.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@
4848
},{
4949
name: 'cDNA Libraries with Hashing and Single HTO/Lane',
5050
url: LABKEY.ActionURL.buildURL('query', 'executeQuery.view', null, {schemaName: 'singlecell', queryName: 'cdna_libraries', 'query.uniqueHtos~in': '0;1', 'query.hashingReadsetId/name~isnonblank': null, 'query.hashingReadsetId/totalFiles~eq': 0})
51+
},{
52+
name: 'GEX Readsets Missing Nimble (Measured using MHC)',
53+
url: LABKEY.ActionURL.buildURL('query', 'executeQuery.view', null, {
54+
schemaName: 'sequenceanalysis',
55+
queryName: 'sequence_readsets',
56+
'query.distinctOutputGenomes~contains': 'Mmul_10',
57+
'query.status~isblank': null,
58+
'query.totalForwardReads~isnonblank': null,
59+
'query.sort': 'rowid',
60+
'query.librarytype~eq': '10x 5\' GEX',
61+
'query.distinctOutputGenomes~doesnotcontain': 'Rhesus Macaque MHC v2'
62+
})
5163
},{
5264
name: 'Analyses In Novogene-Related Workbook',
5365
url: LABKEY.ActionURL.buildURL('query', 'executeQuery.view', null, {schemaName: 'sequenceanalysis', queryName: 'sequence_analyses', 'query.container/title~containsoneof': 'Novogene;shipment'})

0 commit comments

Comments
 (0)