From bam to lncRNA profile.
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- task featureCounts {
- File bam_file
- File lnc_gtf_file
- String gtf_dir
- String sample_id
- String docker
- String cluster
-
-
-
- command <<<
- featureCounts -T 4 -t exon -g gene_id -a ${gtf_dir}/${lnc_gtf_file} -s 0 -p -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}.summary"
- }
- }
|