Update tests/modules/motus/profile/main.nf

This commit is contained in:
James A. Fellows Yates 2022-05-12 20:08:37 +01:00 committed by GitHub
parent 6b960f0e75
commit 8dd711aba2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,27 +17,3 @@ workflow test_motus_profile_single_end {
MOTUS_PROFILE ( input, MOTUS_DOWNLOADDB.out.db )
}
workflow test_motus_profile_paired_end {
input = [
[ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
]
MOTUS_DOWNLOADDB(file('https://raw.githubusercontent.com/motu-tool/mOTUs/master/motus/downloadDB.py'))
MOTUS_PROFILE ( input, MOTUS_DOWNLOADDB.out.db)
}
workflow test_motus_profile_bam {
input = [
[ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true) ]
]
MOTUS_DOWNLOADDB(file('https://raw.githubusercontent.com/motu-tool/mOTUs/master/motus/downloadDB.py'))
MOTUS_PROFILE ( input, MOTUS_DOWNLOADDB.out.db)
}