Skip to content
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

feat!: add starting_assembly as argument when using genomic_to_tx_segment #391

Merged
merged 21 commits into from
Jan 8, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/cool_seq_tool/mappers/exon_genomic_coords.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,8 @@ async def genomic_to_tx_segment(
used.
:param genomic_ac: Genomic accession (i.e. ``NC_000001.11``). If not provided,
must provide ``chromosome. If ``chromosome`` is also provided,
``genomic_ac`` will be used.
``genomic_ac`` will be used. If the genomic accession is from GRCh37, it
will be lifted over to GRCh38
jarbesfeld marked this conversation as resolved.
Show resolved Hide resolved
:param seg_start_genomic: Genomic position where the transcript segment starts
:param seg_end_genomic: Genomic position where the transcript segment ends
:param transcript: The transcript to use. If this is not given, we will try the
Expand Down Expand Up @@ -749,7 +750,8 @@ async def _genomic_to_tx_segment(
If ``genomic_ac`` is also provided, ``genomic_ac`` will be used.
:param genomic_ac: Genomic accession (i.e. ``NC_000001.11``). If not provided,
must provide ``chromosome. If ``chromosome`` is also provided, ``genomic_ac``
will be used.
will be used. If the genomic accession is from GRCh37, it will be lifted
over to GRCh38
:param transcript: The transcript to use. If this is not given, we will try the
following transcripts: MANE Select, MANE Clinical Plus, Longest Remaining
Compatible Transcript
Expand Down
Loading