Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Commit

Permalink
got haplotype_caller.nf working with mtb genomes
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi18av committed Oct 22, 2020
1 parent 5068524 commit 145cc69
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/gatk/haplotype_caller/haplotype_caller.nf
Expand Up @@ -18,8 +18,7 @@ process GATK_HAPLOTYPE_CALLER {
input:
tuple path(ref_fasta), path(ref_fasta_index)
path(ref_dict)
// FIXME
path(input_bam)
tuple path(input_bam), path(input_bam_index)
path(interval_list)


Expand Down Expand Up @@ -61,7 +60,7 @@ workflow test {

ref_dict_ch = Channel.value(Paths.get("${baseDir}/test_data/Homo_sapiens_assembly38.dict"))

input_bam_ch = Channel.fromPath("${baseDir}/test_data/*bam*").collect()
input_bam_ch = Channel.fromPath("${baseDir}/test_data/*bam*").toSortedList().flatten().collate(2)

interval_list_ch = Channel.value(Paths.get("${baseDir}/test_data/test-intervals.hg38.list"))

Expand Down

0 comments on commit 145cc69

Please sign in to comment.