Entering edit mode
23 months ago
Srinka
▴
20
The workflow was given as -
workflow {
mapping(Channel.fromPath('TRIM.out', 'buildIndex.out'))
}
The process is written as -
process mapping {
input: path 'TRIM.out' path 'buildIndex.out'
"""
bowtie2 -x $buildIndex.out $TRIM.out -S accepted_hits.sam
"""
}
Could you format your code as code block?