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

Non paired reads #31

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

Commits on Aug 1, 2024

  1. Bug fix for running with paired=FALSE.

    The assumption that the first value column on the `cov` object is a score column
    does not hold when running fragCounter with `paired=FALSE` - see the logic in `PrepareCov`
    where a different bamUtils function is used. The `count` column is set in that branch
    though and is the correct column to use here.
    
    Preserving the initial logic if `count` column does not exist though in case other
    usages depend on that behavior.
    jstimes committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    0ede04a View commit details
    Browse the repository at this point in the history
  2. Add mc.cores argument to fragCounter.

    Passes `mc.cores` through to `PrepareCov` and then `bam.cov.gr` for
    potential speed-up. With default value of 1, `bam.cov.gr` was taking
    ~3 days for a 116x coverage single-end PacBio reads.
    jstimes committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    f2cbc70 View commit details
    Browse the repository at this point in the history