From fastq to lncRNA profile.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- task featureCounts {
- File bam_file
- File lnc_gtf_file
- String sample_id
- String docker
- String cluster
-
-
-
- command <<<
- featureCounts -T 4 -t exon -g gene_id -a ${lnc_gtf_file} -s 0 -p -O -o ${sample_id}.genefeaturecount.txt ${bam_file}
- >>>
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd 200 /cromwell_root/"
- }
-
- output {
- File out_profile = "${sample_id}.genefeaturecount.txt"
- File out_summary = "${sample_id}.genefeaturecount.txt.summary"
- }
- }
|