-
Notifications
You must be signed in to change notification settings - Fork 71
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
Provide User Guide to Common Warnings #217
Comments
It usually means you performed GATK indel realignment. GATK indel realignment doesn't update the SA tags of split read alignments so the records for the split read alignment become internally inconsistent, hence the warning.
The sorting step is unbuffered. The two messages apply to difference steps (the log messages can get even more confusing when multiple threads are interleaving their log messages.
This one's a bit messier as I'm reuse the htsjdk ProgressLogger and it doesn't look like it supports conditionally logging just the progress indicators. I'd have add a option then go through every progress logger and add conditional logging code to keep these out. Even then, I wouldn't be able to stop the progress logging from the places I call out to picard code (e.g. CollectGridssMetrics just adds extra metrics to Picard tools CollectMultipleMetrics). Leaving this issue open so I can put these in FAQ/wiki. |
I didn't use GATK to process the files but I merely piped the output of
For these, the warning message is
Do you observe anything problematic? It seems that modifying the frequency of progress messages isn't feasible, so their current frequency is understandable. |
…d warrnings should now all be gone when GRIDSS is run from the driver script.
Keeping open as common errors (eg SA tag mismatches) are not yet properly documented. |
Closing since GRIDSS will now fix SA tag mismatches. |
Could there be a guide written about the meanings of common GRIDSS log warnings and what to do about them? For example, does
mean that one needs to start from the beginning and align the FASTQ files differently?
I also think that the next two warnings look contradictory:
If the reading is unbuffered, why is there a warning soon after from
AsyncBufferedIterator
?It would be convenient if there was an option that caused log messages to be output once at the beginning of a module and once at the end (less verbose). It's hard to spot problems with many messages of the form:
cluttering the log.
The text was updated successfully, but these errors were encountered: