Skip to content

Commit

Permalink
added test correction tmtplex
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Oct 5, 2024
1 parent d1d8820 commit 6f87597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/local/openms/isobaricanalyzer/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ process ISOBARICANALYZER {
.drop(1) // Assuming the first non-comment line is a header
.collect { line ->
def values = line.split('/')
return "\"${values[1]}/${values[2]}/${values[3]}/${values[4]}\""
return "${values[1]}/${values[2]}/${values[3]}/${values[4]}"
}

// Join the matrix lines into a format for the C++ tool
Expand Down

0 comments on commit 6f87597

Please sign in to comment.