Skip to content

Commit

Permalink
fix graphtyper
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Feb 14, 2025
1 parent e7a0e94 commit fb0476d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/modules/nf-core/graphtyper/genotype/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ workflow test_graphtyper_genotype_multi {
file(params.test_data['sarscov2']['illumina']['test_single_end_sorted_bam_bai'], checkIfExists: true)
]
] )
reference = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
reference = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true).map { it -> [ 'id': it.simpleName], it ] }
ref_with_meta = [ [ id: 'ref' ], file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)]
ref_index = [ [ id: 'ref_index' ], file(params.test_data['sarscov2']['genome']['genome_fasta_fai'], checkIfExists: true)]
region = file(params.test_data['sarscov2']['genome']['regions_txt'], checkIfExists: true)
Expand Down

0 comments on commit fb0476d

Please sign in to comment.