Skip to content

Releases: macs3-project/MACS

v3.0.3

20 Feb 17:57
8a833cf
Compare
Choose a tag to compare

Changes for MACS (3.0.3)

Features added

  1. Now support FRAG format for single-cell ATAC-seq in callpeak and
    pileup. FRAG format is used by 10x Genomics to store alignments from
    the single-cell ATAC-seq pipeline cellranger-atac or the multi-omics
    pipeline cellranger-arc. The format is essentially BEDPE with two
    additional columns: the barcode and the count of fragments aligned to
    the same location with the same barcode. Support for FRAG in other
    tools is coming soon, as well as for hmmratac calls.

    If you specify FRAG as your input format:

    • You can use a barcode list for a subset of cells with --barcodes,
      then callpeak will identify peaks and pileup will build pileup
      track for the fragments of this subset of cells.
    • Duplicates will not get removed as we'll assume all fragments are
      valid. Optionally, an option, --max-count, can be applied to set
      the maximum count.
  2. We transitioned our pyx codes to py codes, adopting a 'pure
    Python style' with PEP-484 type annotations. This change has made our
    source codes more compatible with Python programming tools such as
    flake8. During this process, we performed further code cleaning and
    eliminated unnecessary dependencies. We intend to continue improving
    our code quality in the future.

  3. We have modified the handling of 'blacklist' regions in the
    hmmratac tool. This change impacts both the Expectation-Maximization
    (EM) step that estimates fragment length distributions, and the Hidden
    Markov Model (HMM) step that learns and predicts nucleosome states. We
    now exclude aligned fragments located in the 'blocklist' regions
    before both steps. We implemented the exclude functions in both
    PETrackI and PETrackII to support this feature. For more detailed
    information and the reasoning behind it, refer to issue #680.

  4. We have tested Numpy>=2. Now MACS3 can be run on Numpy version 1 and
    version 2.

Bugs fixed

  1. The hmmratagc option --keep-duplicate previously had the
    opposite effect of what its name and description suggested. Therefore,
    it was renamed to --remove-dup to more accurately describe the
    actual behavior. Duplicate fragments will not be removed by hmmratac
    unless this option is explicitly set up.

  2. hmmratac: wrong class name was used while saving digested signals
    in BedGraph files. Fixed multiple other issues related to output
    filenames. #682

  3. Fix issues in big-endian system in Parser.py codes. Enable
    big-endian support in BAM.py codes for accessig certain alignment
    records that overlap with given genomic coordinates using BAM/BAI
    files.

  4. predictd and filterdup: wrong variable name used while
    reading multiple pe/frag files.

Doc

  1. Explanation on the filtering criteria on SAM/BAM/BAMPE files.

PRs

  • Feat/macs3/reformat pyproject by @taoliu in #662
  • Feat/macs3/python style cython (1st) by @taoliu in #664
  • Feat/macs3/fragmentfile by @taoliu in #668
  • Expose the "peaks" field in BroadPeakIO by @kaizhang in #678
  • FRAG format support and bdg filename type fixed by @taoliu in #685
  • Change the way to exclude regions in hmmratac and fix the incorrect keep-duplicate option by @taoliu in #689
  • Feat/macs3/fragsupport by @taoliu in #690
  • numpy 2 support/prep for macs3.0.3 by @taoliu in #691

New Contributors

Full Changelog: v3.0.2...v3.0.3

MACS3 v3.0.2

07 Sep 16:19
be970b7
Compare
Choose a tag to compare

What's New

  • hmmratac poison emission added. #635
  • hmmratac output in narrowPeak format
  • cutoff-analysis feature enhanced. #636 #642
  • hmmratac memory usage optimized #628 #640
  • file format to be more compatible with UCSC browser #653
  • Use -O3 instead of -Ofast for compatibility. #637
  • Update instruction to install macs3 through conda/bioconda
  • Reorganize MACS3 docs and publish through https://macs3-project.github.io/MACS
  • Add documents for various file formats used in MACS3.

What's Changed (automatically generated log)

Full Changelog: v3.0.1...v3.0.2

MACS3 v3.0.1

23 Feb 07:57
3cfb5dc
Compare
Choose a tag to compare

What's Changed

Full Changelog: https://github.com/macs3-project/MACS/blob/release/macs3/3.0.1/ChangeLog

MACS3 v3.0.0

15 Nov 19:37
f9c6546
Compare
Choose a tag to compare

First release of MACS3 (v3.0.0). Compared with the previous v3.0.0b3, changes are:

  1. Cython 3 support #579
  2. BEDPE support in hmmratac #580
  3. correct libm support #587
  4. removal of the requirement of pip and wheel #589
  5. rewritten and reorganized documentation #597

Check other updates in MACS3 so far in previous beta/alpha releases and the ChangeLog file.

v3.0.0 beta 3 release

30 Jul 16:46
076ee83
Compare
Choose a tag to compare
v3.0.0 beta 3 release Pre-release
Pre-release

The third beta version of MACS3, addressing the Cython issue and adding more HMMRATAC options.

  • New features from beta2:
  1. HMMRATAC module

    --modelonly option: only generate HMM model and quit

    -t or --training: customized training regions can be provided through this option.

    --min-frag-p: exclude fragments with abnormal fragment length while generating four signal tracks. #577 Check macs3 hmmratac -h.

  2. testing for Mac OS12 is added.

  3. We require Cython 0.29.*. The new Cython3 will break our codes. We will adopt Cython3 later. #574

MACS2 v2.2.9.1

21 Jul 14:28
1afcae6
Compare
Choose a tag to compare

Since Cython has a major upgrade to 3.0, previous MACS2 can't be automatically installed through pip. Now we changed some requirements for dependencies: Python: 3.7 to 3.11, Cython 0.29.*, and Numpy >=0.19. The MACS3 setup.py script has been borrowed into MACS2 codes. Also, we tested MACS2 on Mac OS12 through Github Actions as well.

Thank @jemajet! #569

(overwrite the previous v2.2.9 since I forgot to include some changes to the documentation.)

v3.0.0 beta 2 release

23 Jun 21:33
0c161d5
Compare
Choose a tag to compare
v3.0.0 beta 2 release Pre-release
Pre-release

MACS3 beta 2 release includes some improvements on hmmratac command. We've added the cutoff-analysis feature as in callpeak subcommand to hmmratac. It will provide help for users to decide the correct cutoff for training HMM. We also add the memory usage display to the runtime message. Also, we brought back GitHub Action testing for s390x, power64le, and armv7. We will work on rest of the documentation for the next release.

MACS2 v2.2.8

15 May 14:05
f350e8c
Compare
Choose a tag to compare

Now support Python 3.6-3.11, and newer numpy and cython, tested on x86 and ARM. Please note that .c files from cython pyx files have been removed from the package. They should be regenerated during installation so Cython is required.

v3.0.0 beta 1 release

05 Oct 17:53
f830bcb
Compare
Choose a tag to compare
v3.0.0 beta 1 release Pre-release
Pre-release

MACS3 beta 1 release includes the new hmmratac command. We rewrote the HMMRATAC (Tarbell 2019) idea in Python. Now all the functions for MACS3 release is ready. We plan to do some optimization and tweaking on hmmratac feature in the next beta release and finish the documentation.

v3.0.0 Alpha 7 release

18 Feb 17:46
Compare
Choose a tag to compare
Pre-release

Alpha 7 provides support for BAI index of BAM file so that we can use the original BAM file instead of a subset BAM file for callvar command. Also, we fixed bugs related to #497 #498 (python 3.10 support) and #501 #502 (missing header line).