We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
it seems that cov is hardcoded to NULL in PrepareCov within the FragCounter function:
cov = PrepareCov(bam, cov = NULL, ...) in lines 298 and 303.
cov = PrepareCov(bam, cov = NULL, ...)
According to my test, this causes the function to yield an error if a coverage.rds is provided. I managed to run the function by removing the NULL.
cov = PrepareCov(bam, cov = cov, ...)
Hope this helps!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
it seems that cov is hardcoded to NULL in PrepareCov within the FragCounter function:
cov = PrepareCov(bam, cov = NULL, ...)
in lines 298 and 303.
According to my test, this causes the function to yield an error if a coverage.rds is provided. I managed to run the function by removing the NULL.
cov = PrepareCov(bam, cov = cov, ...)
Hope this helps!
The text was updated successfully, but these errors were encountered: