File tree Expand file tree Collapse file tree 7 files changed +23
-3
lines changed Expand file tree Collapse file tree 7 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ workflow CellRangerGex {
10
10
Array [File ] inputFastq
11
11
String referenceUrl
12
12
13
+ Boolean includeIntrons
14
+ Int ? expectCells
15
+
13
16
Int numCores = 16
14
17
Int memory = 128
15
18
@@ -23,6 +26,8 @@ workflow CellRangerGex {
23
26
fastqName = fastqName ,
24
27
inputFastq = inputFastq ,
25
28
referenceUrl = referenceUrl ,
29
+ includeIntrons = includeIntrons ,
30
+ expectCells = expectCells ,
26
31
numCores = numCores ,
27
32
memory = memory ,
28
33
dockerRegistry = dockerRegistry
Original file line number Diff line number Diff line change 10
10
" s3://dp-lab-test/tiny/cellranger_tiny_fastq/tinygex_S1_L002_R2_001.fastq.gz"
11
11
],
12
12
"CellRangerGex.referenceUrl" : " https://dp-lab-test.s3.amazonaws.com/tiny/cellranger_tiny_ref/refdata-gex.tar.gz" ,
13
+ "CellRangerGex.includeIntrons" : true ,
14
+ "CellRangerGex.expectCells" : 1000 ,
13
15
"CellRangerGex.memory" : 128 ,
14
16
"CellRangerGex.dockerRegistry" : " quay.io/hisplan"
15
17
}
Original file line number Diff line number Diff line change 7
7
" s3://.../test_sample1_S1_L001_R2_001.fastq.gz"
8
8
],
9
9
"CellRangerGex.referenceUrl" : " https://cf.10xgenomics.com/supp/cell-exp/refdata-gex-mm10-2020-A.tar.gz" ,
10
+ "CellRangerGex.includeIntrons" : false ,
11
+ "CellRangerGex.expectCells" : 1000 ,
10
12
"CellRangerGex.memory" : 128 ,
11
13
"CellRangerGex.dockerRegistry" : " quay.io/hisplan"
12
14
}
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ task Count {
8
8
Array [File ] inputFastq
9
9
String referenceUrl
10
10
11
+ Boolean includeIntrons
12
+ Int ? expectCells = 3000
13
+
11
14
Int numCores = 16
12
15
Int memory = 128
13
16
@@ -47,7 +50,8 @@ task Count {
47
50
--fastqs=${path_input} \
48
51
--sample=~ {fastqName} \
49
52
--localcores=~ {numCores} \
50
- --localmem=~ {localMemory}
53
+ --localmem=~ {localMemory} \
54
+ --expect-cells=~ {expectCells} ~ {true=' --include-introns' false=' ' includeIntrons}
51
55
52
56
# targz the analysis folder and pipestance metadata if successful
53
57
if [ $? -eq 0 ]
Original file line number Diff line number Diff line change 8
8
" s3://dp-lab-data/collaborators/arudensky/Cd4CellDiffAf/Foxp3_minus/FASTQ/2676_Foxp3_minus_IGO_12104_3_S25_L001_R2_001.fastq.gz"
9
9
],
10
10
"Count.referenceUrl" : " https://cf.10xgenomics.com/supp/cell-exp/refdata-gex-mm10-2020-A.tar.gz" ,
11
+ "Count.includeIntrons" : false ,
12
+ "Count.expectCells" : 3000 ,
11
13
"Count.numCores" : 16 ,
12
14
"Count.memory" : 128 ,
13
15
"Count.dockerRegistry" : " quay.io/hisplan"
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ workflow Count {
10
10
Array [File ] inputFastq
11
11
String referenceUrl
12
12
13
+ Boolean includeIntrons
14
+ Int ? expectCells
15
+
13
16
Int numCores
14
17
Int memory
15
18
@@ -21,10 +24,12 @@ workflow Count {
21
24
input :
22
25
sampleName = sampleName ,
23
26
fastqName = fastqName ,
24
- inputFastq = inputFastq ,
27
+ inputFastq = inputFastq ,
25
28
referenceUrl = referenceUrl ,
29
+ includeIntrons = includeIntrons ,
30
+ expectCells = expectCells ,
26
31
numCores = numCores ,
27
- memory = memory ,
32
+ memory = memory ,
28
33
dockerRegistry = dockerRegistry
29
34
}
30
35
You can’t perform that action at this time.
0 commit comments