-
Notifications
You must be signed in to change notification settings - Fork 8
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
umi collapse fails with fastq input #1
Comments
That's because FASTQ reads do not have a mapping quality, so the default mapping quality merging scheme cannot be used. Try adding |
A better warning (or a different default setting) probably should be provided, so this needs to be worked on. |
Hi Daniel.
Thanks so much for your quick and helpfull response.
I was wandering if there was any way of getting the deduplication
statistics when I collapse a fastq file with UMICollapse? (something
similar to the --output-stats of umi-tools)
Best,
Gavriel
בתאריך יום ג׳, 24 במרץ 2020 ב-2:49 מאת Daniel Liu <
notifications@github.com>:
… A better warning (or a different default setting) probably should be
provided, so this is an open issue.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGFYN4MH4HEZFNYNEYTJCNTRI77TFANCNFSM4LSHIE2Q>
.
|
Currently, there is no way to do so. Of course, this should not be too hard to implement as a optional flag, like UMI-tools. However, I chose to not implement it because efficiency must be sacrificed in order to collect extra statistics. |
When deduplicating FASTQ files, merging using average quality scores is now the default, so this issue is resolved. |
Great!
Thanks for the update
… On 17 Oct 2020, at 9:00, Daniel Liu ***@***.***> wrote:
When deduplicating FASTQ files, merging using average quality scores is now the default, so this issue is resolved.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#1 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AGFYN4MO23A5DN2ZEOSXGKTSLEXJBANCNFSM4LSHIE2Q>.
|
umicollapse is failing whan using fastq input. The command I'm running is:
umicollapse fastq -i in.fastq.gz -o out.fastq.gz
and I'm getting the following error:
Exception in thread "main" java.lang.ClassCastException: class umicollapse.util.FASTQRead cannot be cast to class umicollapse.util.SAMRead (umicollapse.util.FASTQRead and umicollapse.util.SAMRead are in unnamed module of loader 'app')
at umicollapse.merge.MapQualMerge.merge(MapQualMerge.java:9)
at umicollapse.main.DeduplicateFASTQ.deduplicateAndMerge(DeduplicateFASTQ.java:53)
at umicollapse.main.Main.main(Main.java:166)
The text was updated successfully, but these errors were encountered: