-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcellranger-count.cwl
281 lines (234 loc) · 7.25 KB
/
cellranger-count.cwl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
cwlVersion: v1.0
class: CommandLineTool
requirements:
- class: InlineJavascriptRequirement
- class: InitialWorkDirRequirement
listing: |
${
var listing = [
{
"entry": inputs.fastq_file_r1,
"entryname": "sample_S1_L001_R1_001.fastq",
"writable": true
},
{
"entry": inputs.fastq_file_r2,
"entryname": "sample_S1_L001_R2_001.fastq",
"writable": true
}
];
if (inputs.fastq_file_i1){
listing.push(
{
"entry": inputs.fastq_file_i1,
"entryname": "sample_S1_L001_I1_001.fastq",
"writable": true
}
);
};
return listing;
}
hints:
- class: DockerRequirement
dockerPull: cumulusprod/cellranger:4.0.0
inputs:
fastq_file_r1:
type: File
doc: |
FASTQ read 1 file (will be staged into workdir as sample_S1_L001_R1_001.fastq)
fastq_file_r2:
type: File
doc: |
FASTQ read 2 file (will be staged into workdir as sample_S1_L001_R2_001.fastq)
fastq_file_i1:
type: File?
doc: |
FASTQ index file (if provided, will be staged into workdir as sample_S1_L001_I1_001.fastq)
indices_folder:
type: Directory
inputBinding:
position: 5
prefix: "--transcriptome"
doc: |
Path of folder containing 10x-compatible transcriptome reference.
Should be generated by "cellranger mkref" command
expect_cells:
type: int?
inputBinding:
position: 6
prefix: "--expect-cells"
doc: |
Expected number of recovered cells.
Default: 3,000 cells
force_cells:
type: int?
inputBinding:
position: 7
prefix: "--force-cells"
doc: |
Force pipeline to use this number of cells, bypassing the cell detection algorithm.
Use this if the number of cells estimated by Cell Ranger is not consistent with the
barcode rank plot.
include_introns:
type: boolean?
inputBinding:
position: 8
prefix: "--include-introns"
doc: |
Add this flag to count reads mapping to intronic regions.
This may improve sensitivity for samples with a significant
amount of pre-mRNA molecules, such as nuclei.
threads:
type: int?
inputBinding:
position: 9
prefix: "--localcores"
doc: |
Set max cores the pipeline may request at one time.
Default: all available
memory_limit:
type: int?
inputBinding:
position: 10
prefix: "--localmem"
doc: |
Set max GB the pipeline may request at one time
Default: all available
virt_memory_limit:
type: int?
inputBinding:
position: 11
prefix: "--localvmem"
doc: |
Set max virtual address space in GB for the pipeline
Default: all available
outputs:
web_summary_report:
type: File
outputBinding:
glob: "sample/outs/web_summary.html"
doc: |
Run summary metrics and charts in HTML format
metrics_summary_report:
type: File
outputBinding:
glob: "sample/outs/metrics_summary.csv"
doc: |
Run summary metrics in CSV format
possorted_genome_bam_bai:
type: File
outputBinding:
glob: "sample/outs/possorted_genome_bam.bam"
secondaryFiles:
- .bai
doc: |
Indexed reads aligned to the genome and transcriptome annotated
with barcode information
filtered_feature_bc_matrix_folder:
type: Directory
outputBinding:
glob: "sample/outs/filtered_feature_bc_matrix"
doc: |
Folder with filtered feature-barcode matrices containing only
cellular barcodes in MEX format
filtered_feature_bc_matrix_h5:
type: File
outputBinding:
glob: "sample/outs/filtered_feature_bc_matrix.h5"
doc: |
Filtered feature-barcode matrices containing only cellular barcodes
in HDF5 format
raw_feature_bc_matrices_folder:
type: Directory
outputBinding:
glob: "sample/outs/raw_feature_bc_matrix"
doc: |
Folder with unfiltered feature-barcode matrices containing all
barcodes in MEX format
raw_feature_bc_matrices_h5:
type: File
outputBinding:
glob: "sample/outs/raw_feature_bc_matrix.h5"
doc: |
Unfiltered feature-barcode matrices containing all barcodes in HDF5 format
secondary_analysis_report_folder:
type: Directory
outputBinding:
glob: "sample/outs/analysis"
doc: |
Folder with secondary analysis results including dimensionality reduction,
cell clustering, and differential expression
molecule_info_h5:
type: File
outputBinding:
glob: "sample/outs/molecule_info.h5"
doc: |
Molecule-level information used by cellranger aggr to aggregate samples into
larger datasets
loupe_browser_track:
type: File
outputBinding:
glob: "sample/outs/cloupe.cloupe"
doc: |
Loupe Browser visualization and analysis file
stdout_log:
type: stdout
stderr_log:
type: stderr
baseCommand: ["cellranger", "count", "--disable-ui", "--fastqs", ".", "--id", "sample"]
stdout: cellranger_count_stdout.log
stderr: cellranger_count_stderr.log
$namespaces:
s: http://schema.org/
$schemas:
- https://github.com/schemaorg/schemaorg/raw/main/data/releases/11.01/schemaorg-current-http.rdf
label: "Cell Ranger Count Gene Expression"
s:name: "Cell Ranger Count Gene Expression"
s:alternateName: "Quantifies gene expression from a single-cell RNA-Seq library"
s:downloadUrl: https://raw.githubusercontent.com/Barski-lab/sc-seq-analysis/main/tools/cellranger-count.cwl
s:codeRepository: https://github.com/Barski-lab/sc-seq-analysis
s:license: http://www.apache.org/licenses/LICENSE-2.0
s:isPartOf:
class: s:CreativeWork
s:name: Common Workflow Language
s:url: http://commonwl.org/
s:creator:
- class: s:Organization
s:legalName: "Cincinnati Children's Hospital Medical Center"
s:location:
- class: s:PostalAddress
s:addressCountry: "USA"
s:addressLocality: "Cincinnati"
s:addressRegion: "OH"
s:postalCode: "45229"
s:streetAddress: "3333 Burnet Ave"
s:telephone: "+1(513)636-4200"
s:logo: "https://www.cincinnatichildrens.org/-/media/cincinnati%20childrens/global%20shared/childrens-logo-new.png"
s:department:
- class: s:Organization
s:legalName: "Allergy and Immunology"
s:department:
- class: s:Organization
s:legalName: "Barski Research Lab"
s:member:
- class: s:Person
s:name: Michael Kotliar
s:email: mailto:misha.kotliar@gmail.com
s:sameAs:
- id: http://orcid.org/0000-0002-6486-3898
doc: |
Cell Ranger Count Gene Expression
Quantifies gene expression from a single-cell RNA-Seq library.
Input parameters for Feature Barcode, Targeted Gene
Expression and CRISPR-specific analyses are not implemented,
therefore the correspondent outputs are also excluded.
Parameters set by default:
--disable-ui - no need in any UI when running in Docker
container
--id - can be hardcoded as we rename input files anyway
--fastqs - points to the current directory, because input
FASTQ files are staged there
Why do we need to rename input files?
Refer to the "My FASTQs are not named like any of the above
examples" section of
https://support.10xgenomics.com/single-cell-gene-expression/software/pipelines/latest/using/fastq-input