Skip to content

Commit

Permalink
Merge pull request #236 from nf-cmgg/fix-family-name
Browse files Browse the repository at this point in the history
fix family name issues
  • Loading branch information
nvnieuwk authored Nov 25, 2024
2 parents fc16552 + 169c7a6 commit 1d12585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/local/watchpath_handling/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ workflow WATCHPATH_HANDLING {
// Replace dots with underscores in sample and family names to prevent breaking the multiqc report
row[0].id = row[0].id.replace(".", "_")
row[0].sample = row[0].sample.replace(".", "_")
row[0].family = row[0].family.replace(".", "_")
row[0].family = row[0].family ? row[0].family.replace(".", "_") : row[0].family

// Watchpath logic
def is_watch = false
Expand Down

0 comments on commit 1d12585

Please sign in to comment.