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