Skip to content
Snippets Groups Projects
Commit 70ce7af1 authored by Gervaise Henry's avatar Gervaise Henry 🤠
Browse files

Fix fastq # test

parent fbd2da78
2 merge requests!37v0.0.1,!14Resolve "process_createManifest"
Pipeline #5737 failed with stages
in 8 minutes and 1 second
...@@ -25,7 +25,7 @@ def main(): ...@@ -25,7 +25,7 @@ def main():
else: else:
rep=metaFile["Replicate_RID"].unique()[0] rep=metaFile["Replicate_RID"].unique()[0]
print(rep) print(rep)
if (len(metaFile[metaFile["File_Type"] == "FastQ"].all()) > 2): if (len(metaFile[metaFile["File_Type"] == "FastQ"]) > 2):
print("There are more then 2 fastq's in the metadata: " + " ".join(metaFile[metaFile["File_Type"] == "FastQ"].RID)) print("There are more then 2 fastq's in the metadata: " + " ".join(metaFile[metaFile["File_Type"] == "FastQ"].RID))
exit(1) exit(1)
if (args.parameter == "ends"): if (args.parameter == "ends"):
......
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