Skip to content
Snippets Groups Projects
Commit c2464205 authored by kohleman's avatar kohleman
Browse files

fix bug when more than one pool is registered on a lane (Pool of pools)

SVN: 33182
parent b53dcb70
No related branches found
No related tags found
No related merge requests found
...@@ -492,8 +492,12 @@ def process(transaction): ...@@ -492,8 +492,12 @@ def process(transaction):
# extraCopy (affiliation_name, fileName) # extraCopy (affiliation_name, fileName)
extraCopySciCore (affiliation_name, fileName, dirName) extraCopySciCore (affiliation_name, fileName, dirName)
for extFileNameFastQ in externalNamesFastqFileDict: try:
transaction.moveFile(externalNamesFastqFileDict[extFileNameFastQ] , dataSet, folders[f]) for extFileNameFastQ in externalNamesFastqFileDict:
transaction.moveFile(externalNamesFastqFileDict[extFileNameFastQ] , dataSet, folders[f])
except:
# Happens when we have more than one pool registered, then the files have been moved away already
pass
if foundSamples.size() > 0: if foundSamples.size() > 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment