Skip to content

Commit

Permalink
Update circAnnotate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
s6juncheng committed Jul 22, 2015
1 parent a530772 commit 761ed41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DCC/circAnnotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def annotateregions(self,circfile, annotationfile):
left = pybedtools.BedTool('_tmp_DCC/tmp_left')
right = pybedtools.BedTool('_tmp_DCC/tmp_right')
ann = pybedtools.BedTool(annotationfile)
overallintersect = overall.intersect(ann,wa=True,wb=True,loj=True,s=False)
overallintersect = overall.intersect(ann,wa=True,wb=True,loj=True,s=False,nonamecheck=True)
leftintersect = left.intersect(ann,wa=True,wb=True,loj=True,s=False,nonamecheck=True)
rightintersect = right.intersect(ann,wa=True,wb=True,loj=True,s=False,nonamecheck=True)
overallresult = overallintersect.groupby(g=(1,2,3,6),c=9,o='distinct')
Expand Down Expand Up @@ -199,4 +199,4 @@ def searchGeneName(self,annotationstring):
return genes




0 comments on commit 761ed41

Please sign in to comment.