-
Notifications
You must be signed in to change notification settings - Fork 308
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
[ADAM-1992] Make maximum FASTQ read length configurable. #2011
[ADAM-1992] Make maximum FASTQ read length configurable. #2011
Conversation
1 similar comment
Test PASSed. |
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.
Minor code style suggestions
@@ -60,6 +60,13 @@ | |||
* application. We'll see if someone complains in other applications. | |||
*/ | |||
|
|||
public static final String MAX_READ_LENGTH_PROPERTY = "org.bdgenomics.adam.io.FastqRecordReader.MAX_READ_LENGTH"; | |||
|
|||
public static void setMaxReadLength(Configuration conf, |
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.
Code style: add javadocs, make parameters final
@@ -60,6 +60,13 @@ | |||
* application. We'll see if someone complains in other applications. | |||
*/ | |||
|
|||
public static final String MAX_READ_LENGTH_PROPERTY = "org.bdgenomics.adam.io.FastqRecordReader.MAX_READ_LENGTH"; |
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.
add
public static final int DEFAULT_MAX_READ_LENGTH = 10000;
@@ -104,7 +111,7 @@ | |||
/** | |||
* Maximum length for a read string. | |||
*/ | |||
private static final int MAX_LINE_LENGTH = 10000; | |||
private int MAX_LINE_LENGTH; |
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.
Code style: lower camel case variable name
@@ -135,6 +142,8 @@ | |||
*/ | |||
protected FastqRecordReader(final Configuration conf, | |||
final FileSplit split) throws IOException { | |||
MAX_LINE_LENGTH = conf.getInt(MAX_READ_LENGTH_PROPERTY, 10000); |
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.
use DEFAULT_MAX_READ_LENGTH
above
Closing in favor of #2077 |
Resolves #1992.