選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
859B

  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. sed -i '1s/gene_id/GENE_ID/g' ${sample_id}_gene_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 = "${sample_id}_gene_count_matrix.csv"
  22. File mat_expression_transcriptcount = "${sample_id}_transcript_count_matrix.csv"
  23. }
  24. }