-
Notifications
You must be signed in to change notification settings - Fork 397
Fixing bug in Chromosome Mapping Tools #701
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
Conversation
| public static final String CDS = "CDS"; | ||
|
|
||
|
|
||
| public static int base = 1; |
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 a member of this class rather than a static?
josemduarte
left a comment
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.
Looks good thanks! Some minor comments only
| import static junitx.framework.ComparableAssert.assertEquals; | ||
|
|
||
| /** | ||
| * Created by Yana Valasatava on 8/14/17. |
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.
Could you use the @author tag here and also write a minimal explanation of what the test does?
| import java.util.Arrays; | ||
| import java.util.List; | ||
|
|
||
| import static junitx.framework.ComparableAssert.assertEquals; |
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.
This should be imported from package org.junit.assert. I usually simply do this:
import static org.junit.Assert.*;which imports all the assert static methods.
|
Is there anything else I can improve? |
bug in calculating CDS length