-
Notifications
You must be signed in to change notification settings - Fork 24
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
EVA-3639 File stats job #197
Conversation
private static final String KEY_NO_OF_PASS = "nPass"; | ||
private static final String KEY_NO_OF_TRANSITION = "nTi"; | ||
private static final String KEY_NO_OF_TRANSVERSION = "nTv"; | ||
private static final String KEY_NO_OF_MEANQ = "meanQ"; |
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.
private static final String KEY_NO_OF_MEANQ = "meanQ"; | |
private static final String KEY_MEANQ = "meanQ"; |
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.
corrected
if (isSNV) { | ||
String ref = variantDocument.getReference(); | ||
String alt = variantDocument.getAlternate(); | ||
Set<String> transitions = new HashSet<>(Arrays.asList("AG", "GA", "CT", "TC")); |
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.
Shouldn't this be put as a class variable ?
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, this should be a constant. Updated.
No description provided.