Skip to content

Commit

Permalink
Minor patch
Browse files Browse the repository at this point in the history
  • Loading branch information
JLittlef committed Mar 19, 2024
1 parent 4840ced commit 6477a1a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ process OpenmmMinimise {
publishDir "${params.resultsDir}/openmm-minimise/", pattern: "*folded.pdb", mode: 'copy'
publishDir "${params.resultsDir}/openmm-minimise/", pattern: "data.csv", mode: 'copy'
input:
path "*_fixed.pdb"
path fixed_pdbs
output:
path '*_unfolded.pdb', emit: unfolded_pdbs
path '*_folded.pdb', emit: folded_pdbs
Expand Down Expand Up @@ -51,7 +51,8 @@ workflow {
inpath_ch = channel.fromPath("${params.inputFile}")
incsv_ch = channel.fromPath("${params.inputCsv}")
PdbfixerMutants(incsv_ch, inpath_ch)
OpenmmMinimise
fixed_pdb_ch = channel.fromPath("*_fixed.pdb")
OpenmmMinimise(fixed_pdb_ch)
OutputData(PdbfixerMutants.out.csv_reformat, OpenmmMinimise.out.data)
}

0 comments on commit 6477a1a

Please sign in to comment.