@@ -617,14 +617,15 @@ def GetResults(config, project, libraries):
617
617
skipList = []
618
618
external_skipList = []
619
619
org_dict = {}
620
+ print (libraries )
620
621
for library , v in libraries .items ():
621
622
sampleName , libraryType , libraryProtocol , organism , indexType , requestDepth = v
622
623
org_name , org_label , org_yaml = organism
623
624
# Extra checks to see where we miss out
624
625
if libraryType in validLibraryTypes :
625
- log .info (f"ValidLibraryType = { libraryType } " )
626
+ log .info (f"ValidLibraryType for sample { library } = { libraryType } " )
626
627
else :
627
- log .info (f"Not a ValidLibraryType = { libraryType } " )
628
+ log .info (f"Not a ValidLibraryType for sample { library } = { libraryType } " )
628
629
if not (org_label or org_yaml ):
629
630
log .info (f"Species label or YAML was not set for { org_name } (check Parkour DB.)" )
630
631
if libraryType in validLibraryTypes and (org_label or org_yaml ) and (ignore == False or libraryType in config .get ('external' ,'LibraryTypes' )):
@@ -656,6 +657,7 @@ def GetResults(config, project, libraries):
656
657
for org_label , v2 in v .items ():
657
658
log .debug ('Running organism label ' + org_label )
658
659
organism = org_dict [org_label ]
660
+ org_name , org_label , org_yaml = organism
659
661
log .debug (organism )
660
662
for libraryType , tuples in v2 .items ():
661
663
log .debug ('Running libraryType ' + libraryType )
0 commit comments