Skip to content

Commit

Permalink
Remove quotes from sample names
Browse files Browse the repository at this point in the history
  • Loading branch information
sminot committed Feb 5, 2024
1 parent c5abae8 commit c2e6193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/find_reads.nf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workflow find_reads {
)
.map {
it -> [
it.get('sample', it['"sample"']),
it.get('sample', it['"sample"']).replaceAll(/^\"|\"$/, ""),
[
file(it.get('R1', it.get('fastq_1', it['"fastq_1"']).replaceAll(/^\"|\"$/, "")), checkIfExists: true),
file(it.get('R2', it.get('fastq_2', it['"fastq_2"']).replaceAll(/^\"|\"$/, "")), checkIfExists: true)
Expand Down

0 comments on commit c2e6193

Please sign in to comment.