Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

26 lines
787B

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