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.

27 satır
772B

  1. task count {
  2. File gene_abundance
  3. Array[File] ballgown
  4. String base=basename(gene_abundance, ".gene.abundance.txt")
  5. String docker
  6. String cluster
  7. String disk_size
  8. Int count_length
  9. command <<<
  10. mkdir -p /cromwell_root/tmp/ballgown/${base}
  11. cp -r ${sep=" " ballgown} /cromwell_root/tmp/ballgown/${base}
  12. count -i /cromwell_root/tmp/ballgown -l ${count_length} -g ${base}_gene_count_matrix.csv -t ${base}_transcript_count_matrix.csv
  13. >>>
  14. runtime {
  15. docker: docker
  16. cluster: cluster
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. File mat_expression_genecount="${base}_gene_count_matrix.csv"
  22. File mat_expression_transcriptcount="${base}_transcript_count_matrix.csv"
  23. }
  24. }