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

Fix endsManual

parent 70ce7af1
Branches
Tags
2 merge requests!37v0.0.1,!14Resolve "process_createManifest"
Pipeline #5738 failed with stages
in 21 minutes and 48 seconds
......@@ -37,9 +37,9 @@ def main():
ends = "uk"
print(ends)
if (args.parameter == "endsManual"):
if (len(metaFile[metaFile["File_Type"] == "FastQ"].all()) == 1):
if (len(metaFile[metaFile["File_Type"] == "FastQ"]) == 1):
endsManual = "se"
elif (len(metaFile[metaFile["File_Type"] == "FastQ"].all()) == 2):
elif (len(metaFile[metaFile["File_Type"] == "FastQ"]) == 2):
endsManual = "pe"
print(endsManual)
if (args.parameter == "stranded"):
......
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