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

Fix undetected meta endness

parent bce4b6ea
Branches
Tags
2 merge requests!37v0.0.1,!14Resolve "process_createManifest"
Pipeline #5735 failed with stages
in 21 minutes and 42 seconds
......@@ -33,11 +33,8 @@ def main():
ends = "se"
elif (metaFile.Paired_End.unique() == "Paired End"):
ends = "pe"
elif (metaFile.Paired_End.unique() == ""):
ends = "uk"
else:
print("Ends metadata not match expected options: " + metaFile.Paired_End.unique())
exit(1)
ends = "uk"
print(ends)
if (args.parameter == "endsManual"):
if (len(metaFile[metaFile["File_Type"] == "FastQ"]) == 1):
......
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