Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added per-read anchor requirement to junction extract #195

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Sep 19, 2024

  1. fix: CMake build errors on Mac resolved

     - closes griffithlab#176, CMake was including `src/utils/bedtools/gzstream/version`
       as a C++ source file, when it was a simple text file containing version info
     - I moved this version info into `src/utils/bedtools/gzstream/README`
    TimD1 committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    435e8b8 View commit details
    Browse the repository at this point in the history
  2. fix: min_intron_length_ initialization in JunctionsExtractor

     - fixes griffithlab#188, min_intron_length_ was accidentally set from min_anchor_len_
    TimD1 committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    1260bf9 View commit details
    Browse the repository at this point in the history
  3. feat: added per-read flag and map quality filtering

     - closes griffithlab#183, flag based filtering
     - closes griffithlab#189, mapping quality based filtering
     - option '-F' filters reads containing any of these flags
     - option '-f' filters reads not containing all these flags
     - option '-q' filters reads below this mapping quality
    TimD1 committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    409a492 View commit details
    Browse the repository at this point in the history
  4. feat: added per-read anchor requirement to junction extract

     - closes griffithlab#186, reads now only 'support' a junction if they have at least
       a given minimum anchor length, supplied with the '-A' flag (default 0)
    TimD1 committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    1e3080c View commit details
    Browse the repository at this point in the history