-
Notifications
You must be signed in to change notification settings - Fork 34
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
TASK-5318 - Implement custom annotator to allow clients private files #262
Conversation
return new SequenceOntologyTerm(ConsequenceTypeMappings.getSoAccessionString(name), name); | ||
} | ||
|
||
public static String buildVariantId(String chromosome, int start, String reference, String alternate) { |
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.
Unused method. This method is intended to be used to create an _id
for mongodb. It should not be here
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 includes appendChromosome(..)
and SEPARATOR_CHAR
|
||
public static final char SEPARATOR_CHAR = ':'; | ||
|
||
public static final String THREEPRIME_OVERLAPPING_NCRNA = "3prime_overlapping_ncrna"; |
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.
Most of these constant values should be enums
public static final String TRANSLATED_UNPROCESSED_PSEUDOGENE = "translated_unprocessed_pseudogene"; | ||
public static final String LRG_GENE = "LRG_gene"; | ||
|
||
public static final String INTERGENIC_VARIANT = "intergenic_variant"; |
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.
These values here are partially duplicated with values from ConsequenceTypeMappings
…bly match, #TASK-5913, #TASK-5318 On branch TASK-5318 Changes to be committed: modified: biodata-formats/src/main/java/org/opencb/biodata/formats/variant/cosmic/CosmicParser.java modified: biodata-formats/src/test/java/org/opencb/biodata/formats/variant/cosmic/CosmicParserTest.java
On branch TASK-5318 Changes to be committed: modified: biodata-models/src/main/java/org/opencb/biodata/models/sequence/SequenceLocation.java
Implement COSMIC parser
TASK-5318