mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
28 lines
1,019 B
Text
28 lines
1,019 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { DIAMOND_MAKEDB } from '../../../../modules/diamond/makedb/main.nf'
|
|
include { DIAMOND_BLASTX } from '../../../../modules/diamond/blastx/main.nf'
|
|
|
|
workflow test_diamond_blastx {
|
|
|
|
db = [ file(params.test_data['sarscov2']['genome']['proteome_fasta'], checkIfExists: true) ]
|
|
fasta = [ file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true) ]
|
|
out_ext = 'txt'
|
|
blast_columns = 'qseqid qlen'
|
|
|
|
DIAMOND_MAKEDB ( db )
|
|
DIAMOND_BLASTX ( [ [id:'test'], fasta ], DIAMOND_MAKEDB.out.db, out_ext, blast_columns )
|
|
}
|
|
|
|
workflow test_diamond_blastx_daa {
|
|
|
|
db = [ file(params.test_data['sarscov2']['genome']['proteome_fasta'], checkIfExists: true) ]
|
|
fasta = [ file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true) ]
|
|
out_ext = 'daa'
|
|
blast_columns = []
|
|
|
|
DIAMOND_MAKEDB ( db )
|
|
DIAMOND_BLASTX ( [ [id:'test'], fasta ], DIAMOND_MAKEDB.out.db, out_ext, blast_columns )
|
|
}
|