-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: rearrange app architecture (#196)
* Remove gene-normalizer dependency * Removed `get_mapped_mane_data` (#194), which was the only reason why we needed gene-normalizer * Rearranges app architecture * handlers * `SeqRepoAccess` * `get_fasta_file` is now a method * mappers * `AlignmentMapper` * `MANETranscript` * `ExonGenomicCoordsMapper` * These methods were originally in `CoolSeqTool` * data_sources * `MANETranscriptMappings` * `TranscriptMappings` * `UTADatabase`
- Loading branch information
Showing
33 changed files
with
1,255 additions
and
1,632 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"""Module for extending clients""" | ||
from .seqrepo_access import SeqRepoAccess |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"""Module for mapping data""" | ||
from .alignment import AlignmentMapper | ||
from .mane_transcript import MANETranscript | ||
from .exon_genomic_coords import ExonGenomicCoordsMapper |
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
Oops, something went wrong.