Skip to content

Commit

Permalink
Fix wellington_bootstrap.py error, push to v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Piper committed Nov 25, 2015
1 parent b3def9f commit 00167d7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.2.2 - 2015-12-26
==================
* BUG: Fix error in ``wellington_bootstrap.py``

0.2.1 - 2015-12-25
==================
* ENHANCEMENT: ATAC-seq mode for ``wellington_bootstrap.py``
Expand Down
2 changes: 1 addition & 1 deletion pyDNase/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.1"
__version__ = "0.2.2"
4 changes: 2 additions & 2 deletions pyDNase/scripts/wellington_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ def __call__(self):
assert args.FDR_limit < 0, "FDR limit must be less than 0"

# Treatment
reads2 = pyDNase.BAMHandler(args.treatment_bam, caching=0, ATAC=clargs.A)
reads2 = pyDNase.BAMHandler(args.treatment_bam, caching=0, ATAC=args.A)
# Control
reads1 = pyDNase.BAMHandler(args.control_bam, caching=0, ATAC=clargs.A)
reads1 = pyDNase.BAMHandler(args.control_bam, caching=0, ATAC=args.A)
# Regions of Interest
regions = pyDNase.GenomicIntervalSet(args.bedsites)
# Output
Expand Down

2 comments on commit 00167d7

@fomightez
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your dates for your comments from this month in the file CHANGES in this repo and the documentation at http://pythonhosted.org/pyDNase/index.html all say December but seems you made them in November? Yay! Updates from the future are already here.

@jpiper
Copy link
Owner

@jpiper jpiper commented on 00167d7 Dec 1, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahaha oops. Maybe I should put some tests in to check the changelog :)

Please sign in to comment.