add nextflow d30e48d

This commit is contained in:
2026-04-29 23:01:54 +02:00
parent d0b12d668d
commit 97cc9058d3
2840 changed files with 730250 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
#!/usr/bin/env nextflow
params.db = "$baseDir/blast-db/tiny"
params.query = "$baseDir/data/sample.fa"
params.chunk = 1
db = file(params.db)
/*
* Extends a BLAST query for each entry in the 'chunks' channel
*/
process blast {
input:
path 'query.fa'
output:
path top_hits
"""
blastp -db ${db} -query query.fa -outfmt 6 > blast_result
cat blast_result | head -n 10 | cut -f 2 > top_hits
"""
}
/*
* Find out the top 10 matches returned by the BLAST query
*/
process extract {
input:
path top_hits
output:
path 'sequences'
"blastdbcmd -db ${db} -entry_batch top_hits | head -n 10 > sequences"
}
/*
* Aligns a T-Coffee MSA and print it
*/
process align {
debug true
input:
path all_seq
"t_coffee $all_seq 2>/dev/null | tee align_result"
}
/*
* main flow
*/
workflow {
Channel.fromPath(params.query) |
splitFasta(by: params.chunk, file:true) |
blast |
extract |
collectFile(name:'all_seq') | // Collect all hits to a single file called 'all_seq'
align
}