-
Notifications
You must be signed in to change notification settings - Fork 311
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
Refactoring org.bdgenomics.adam.io
package.
#1064
Conversation
Test PASSed. |
* and the quality encoding includes '@' in its valid character range. So how should one | ||
* distinguish between \n@ as a record delimiter and and \n@ as part of a multi-line | ||
* quality string? | ||
* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
* Added documentation to all classes, methods, and fields that were missing descriptions. * Factored duplicated code from `SingleFastqRecordReader` and `InterleavedFastqRecordReader` out into a new abstract base class `FastqRecordReader`. * Tightened up access modifiers where possible. Sadly, the two input formats cannot be made more private, since Java has a more restricted form of package-private than scala, and the input formats are used from inside of `org.bdgenomics.adam.rdd`. * Removed `@author` tags.
Addressed review comments. |
Test PASSed. |
Test PASSed. |
LGTM |
SingleFastqRecordReader
andInterleavedFastqRecordReader
out into a new abstract base classFastqRecordReader
.org.bdgenomics.adam.rdd
.@author
tags.