Skip to content

Commit

Permalink
Updated check for repeat file code
Browse files Browse the repository at this point in the history
  • Loading branch information
tjakobi committed Aug 28, 2017
1 parent f63b30d commit 2afef01
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions DCC/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ def main():
if options.rep_file is not None:
checkfile(options.rep_file, True)


# Make instance
cm = Cc.Combine(options.tmp_dir)
circann = Ca.CircAnnotate(tmp_dir=options.tmp_dir, strand=options.strand)
Expand Down Expand Up @@ -345,7 +344,7 @@ def main():
# nonrep_left,nonrep_right = filt.nonrep_filter("_tmp_DCC/tmp_left","_tmp_DCC/tmp_right",rep_file)
# filt.intersectLeftandRightRegions(nonrep_left,nonrep_right,indx0,count0)

if not rep_file is None:
if rep_file is not None:
logging.info("Filter by non repetitive region")
filt.filter_nonrep(rep_file, indx0, count0)
else:
Expand Down

0 comments on commit 2afef01

Please sign in to comment.