forked from macs3-project/MACS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a bug related to the broad peak calling function in previous
versions. The gaps were miscalculated, so segmented weak broad calls may be reported, and sometimes you would see peaks with lower than cutoff values in the output files. "Potentially" Fixed issue macs3-project#105 on temporary files, need further followup.
- Loading branch information
Showing
7 changed files
with
55 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
2015-12-22 Tao Liu <[email protected]> | ||
MACS version 2.1.0 20151222 (tag:rc Dongzhi) | ||
|
||
* Bug fixes | ||
|
||
1) Fix a bug while dealing with some chromosomes only containing | ||
one read (pair). The size of dup_plus/dup_minus arrays after | ||
filtering dups should +1. | ||
|
||
2) Fix a bug related to the broad peak calling function in | ||
previous versions. The gaps were miscalculated, so segmented weak | ||
broad calls may be reported, and sometimes you would see peaks | ||
with lower than cutoff values in the output files. | ||
|
||
3) "Potentially" Fixed issue #105, need further followup. | ||
|
||
|
||
2015-07-31 Tao Liu <[email protected]> | ||
MACS version 2.1.0 20150731 (tag:rc) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env python | ||
# Time-stamp: <2015-07-31 14:55:55 Tao Liu> | ||
# Time-stamp: <2015-12-22 16:21:04 Tao Liu> | ||
|
||
"""Description | ||
|
@@ -57,7 +57,7 @@ def main(): | |
] | ||
|
||
setup(name="MACS2", | ||
version="2.1.0.20150731", | ||
version="2.1.0.20151222", | ||
description="Model Based Analysis for ChIP-Seq data", | ||
author='Tao Liu', | ||
author_email='[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env python | ||
# Time-stamp: <2015-07-31 14:55:49 Tao Liu> | ||
# Time-stamp: <2015-12-22 16:21:12 Tao Liu> | ||
|
||
"""Description: | ||
|
@@ -80,7 +80,7 @@ def main(): | |
] | ||
|
||
setup(name="MACS2", | ||
version="2.1.0.20150731", | ||
version="2.1.0.20151222", | ||
description="Model Based Analysis for ChIP-Seq data", | ||
author='Tao Liu', | ||
author_email='[email protected]', | ||
|