Skip to content

Commit

Permalink
Fix #57 in the 0.7 release, bump to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dpryan79 committed Jan 12, 2018
1 parent 2105458 commit 0933fba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,8 @@ Version 0.7 (a.k.a Green Mamba) - Nov 2017 - @vivekbhr
- MAJOR CHANGES:
- Read the Docs integration
- New workflow Hi-C, from mapping to TAD calling, using BWA and HiCExplorer

Version 0.7.1 - Jan. 12 2018

- MINOR CHANGES:
- Fixed issue #57 again via pull request #79, which was related to single-end ChIPseq processing
2 changes: 1 addition & 1 deletion workflows/ChIP-seq/ChIP-seq
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def parse_args(defaults={"verbose":None,"configfile":None,"max_jobs":None,"snake
dest="paired",
action="store_false",
help="input data is single-end, not paired-end (default: '%(default)s')",
default=not(defaults["paired"]))
default=defaults["paired"])

optional.add_argument("--bw-binsize",
dest="bw_binsize",
Expand Down
2 changes: 1 addition & 1 deletion workflows/HiC/HiC
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

__version__ = "0.7"
__version__ = "0.7.1"

__description__ = """
Hi-C workflow v{version} - MPI-IE workflow for Hi-C analysis
Expand Down

0 comments on commit 0933fba

Please sign in to comment.