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

Fix fastq # test

parent fbd2da78
Branches
Tags
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():
else:
rep=metaFile["Replicate_RID"].unique()[0]
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))
exit(1)
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