瀏覽代碼

file

master
LUYAO REN 5 年之前
父節點
當前提交
b3165ccd62
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. +4
    -0
      tasks/untar.wdl

+ 4
- 0
tasks/untar.wdl 查看文件

command <<< command <<<
nt=$(nproc) nt=$(nproc)
tar -zxvf ${tar_file} tar -zxvf ${tar_file}
tree > tree.file.txt
ls > ls.file.txt
>>> >>>


runtime { runtime {


output { output {
Array[File] fastq_file = glob("*.fastq.gz") Array[File] fastq_file = glob("*.fastq.gz")
File tree_file = "tree.file.txt"
File ls_file = "ls.file.txt"
} }
} }

Loading…
取消
儲存