Skip to content
Snippets Groups Projects
Commit 58df1814 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Fixes design file overwrite #6

parent a2733bff
2 merge requests!16Develop,!1Merge hotfix into branch
Pipeline #2992 passed with stage
in 17 seconds
......@@ -36,7 +36,7 @@ process checkDesignFile {
output:
file("design.csv") into designPaths
file("design.checked.csv") into designPaths
script:
......
......@@ -100,7 +100,7 @@ def main():
new_design_df = check_design_headers(design_df)
check_files(design_df, fastq_df)
new_design_df.to_csv('design.csv', header=True, sep=',', index=False)
new_design_df.to_csv('design.checked.csv', header=True, sep=',', index=False)
if __name__ == '__main__':
main()
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment