Skip to content

Commit

Permalink
Merge pull request #62 from jlanga/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
jlanga authored Feb 6, 2019
2 parents e789327 + 4417ee3 commit d6bab4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exfi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
filters.
"""

__version__ = '1.5.0'
__version__ = '1.5.1'
4 changes: 2 additions & 2 deletions exfi/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ def classify(bed3_true, bed3_pred, fraction=0.95):
logging.info("Dumping predictions to disk")
bed3_true\
.sort_values(by=['chrom', 'chrom_start', 'chrom_end'])\
.to_csv(path_or_buf=bed3_true_fn, sep='\t', index=False)
.to_csv(path_or_buf=bed3_true_fn, sep='\t', index=False, header=False)

logging.info('Dumping true values to disk')
bed3_pred\
.sort_values(by=['chrom', 'chrom_start', 'chrom_end'])\
.to_csv(path_or_buf=bed3_pred_fn, sep='\t', index=False)
.to_csv(path_or_buf=bed3_pred_fn, sep='\t', index=False, header=False)

logging.info('Computing true positives')
true_positives_df = bedtools_intersect(
Expand Down

0 comments on commit d6bab4e

Please sign in to comment.