Calculate the bed coverage of multiple BAM files before and after dedup
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
303B

  1. import "./tasks/bedtools.wdl" as bedtools
  2. workflow {{ project_name }} {
  3. File input_samples_file
  4. File bed_file
  5. Array[Array[File]] input_samples = read_tsv(input_samples_file)
  6. Array[File] bam = input_samples[0]
  7. call bedtools.bedtools as bedtools {
  8. input:
  9. bam=bam,
  10. bed_file=bed_file
  11. }
  12. }