Skip to content
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

Closed

Conversation

fnothaft
Copy link
Member

@fnothaft fnothaft commented Jul 6, 2018

Resolves #1992.

@fnothaft fnothaft added this to the 0.24.1 milestone Jul 6, 2018
@fnothaft fnothaft requested a review from heuermh July 6, 2018 04:03
@coveralls
Copy link

Coverage Status

Coverage remained the same at 78.933% when pulling cf1204d on fnothaft:issues/1992-fastq-10000bp into 8e8007e on bigdatagenomics:master.

1 similar comment
@coveralls
Copy link

coveralls commented Jul 6, 2018

Coverage Status

Coverage remained the same at 78.933% when pulling cf1204d on fnothaft:issues/1992-fastq-10000bp into 8e8007e on bigdatagenomics:master.

@AmplabJenkins
Copy link

Test PASSed.
Refer to this link for build results (access rights to CI server needed):
https://amplab.cs.berkeley.edu/jenkins//job/ADAM-prb/2782/
Test PASSed.

Copy link
Member

@heuermh heuermh left a 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,
Copy link
Member

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";
Copy link
Member

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;
Copy link
Member

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);
Copy link
Member

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

@heuermh
Copy link
Member

heuermh commented Nov 5, 2018

Closing in favor of #2077

@heuermh heuermh closed this Nov 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants