-
Notifications
You must be signed in to change notification settings - Fork 0
/
cellranger_count_0.0.1.wdl
46 lines (40 loc) · 1.02 KB
/
cellranger_count_0.0.1.wdl
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
version 1.0
workflow cellranger_count_workflow {
input {
Array[File] fastq_files
File reference_genome
String run_id
}
call run_cellranger_count {
input:
fastq_files = fastq_files,
reference_genome = reference_genome,
run_id = run_id
}
}
task run_cellranger_count {
input {
Array[File] fastq_files
File reference_genome
String run_id
}
command {
cellranger count \
--id=${run_id} \
--fastqs=${sep="," fastq_files} \
--transcriptome=${reference_genome} \
--localcores=8 \
--localmem=32
}
output {
File output_count_directory = "~{run_id}/outs"
File output_metrics_summary = "~{run_id}/outs/metrics_summary.csv"
File output_web_summary = "~{run_id}/outs/web_summary.html"
}
runtime {
docker: "nfcore/cellranger:7.2.0"
cpu: "8"
memory: "32 GB"
disk: "local-disk 300 HDD"
}
}