Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit fbc9328

Browse files
committed
fix last issues w/ bamliquidator formatting output as .txt now
1 parent f8cc173 commit fbc9328

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pipeline_dfci.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2705,7 +2705,7 @@ def callRose(dataFile,macsEnrichedFolder,parentFolder,namesList=[],extraMap = []
27052705

27062706

27072707

2708-
def callRose2(dataFile,macsEnrichedFolder,parentFolder,namesList=[],extraMap = [],inputFile='',tss=2500,stitch='',bashFileName ='',mask=''):
2708+
def callRose2(dataFile,macsEnrichedFolder,parentFolder,namesList=[],extraMap = [],inputFile='',tss=2500,stitch='',bashFileName ='',mask='',useBackground=True):
27092709

27102710
'''
27112711
calls rose w/ standard parameters
@@ -2736,7 +2736,7 @@ def callRose2(dataFile,macsEnrichedFolder,parentFolder,namesList=[],extraMap = [
27362736
bamFile = dataDict[name]['bam']
27372737

27382738
backgroundName = dataDict[name]['background']
2739-
if dataDict.has_key(backgroundName):
2739+
if useBackground and dataDict.has_key(backgroundName):
27402740
backgroundBamFile = dataDict[backgroundName]['bam']
27412741
hasBackground = True
27422742
else:

0 commit comments

Comments
 (0)