-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…nnotations on ClinVarData at build time.
- Loading branch information
1 parent
e2a00dc
commit 7c9b847
Showing
4 changed files
with
216 additions
and
18 deletions.
There are no files selected for viewing
13 changes: 7 additions & 6 deletions
13
exomiser-core/src/main/java/org/monarchinitiative/exomiser/core/genome/dao/ClinVarDao.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
package org.monarchinitiative.exomiser.core.genome.dao; | ||
|
||
import org.monarchinitiative.exomiser.core.model.Variant; | ||
import org.monarchinitiative.exomiser.core.model.pathogenicity.ClinVarData; | ||
import org.monarchinitiative.svart.GenomicInterval; | ||
import org.monarchinitiative.svart.GenomicVariant; | ||
|
||
import java.util.Map; | ||
|
||
|
||
/** | ||
* Interface for providing {@link ClinVarData} about a {@link Variant}. | ||
* Interface for providing {@link ClinVarData} about a {@link GenomicVariant}. | ||
* | ||
* @since 14.0.0 | ||
*/ | ||
public interface ClinVarDao { | ||
|
||
ClinVarData getClinVarData(Variant variant); | ||
|
||
// List<ClinVarData> findClinVarRecordsOverlappingRegion(GenomicInterval genomicInterval); | ||
//// Map<AlleleKey, PathogenicityData> pathogenicityData = mvStoreDao.getPathogenicityDataForRange(chr, min, max); | ||
ClinVarData getClinVarData(GenomicVariant variant); | ||
|
||
Map<GenomicVariant, ClinVarData> findClinVarRecordsOverlappingInterval(GenomicInterval genomicInterval); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters