Skip to content

Map genomic coordinates to CDS and AA position for a specific mRNA RefSeq ID.

Notifications You must be signed in to change notification settings

jurhoades/Mapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mapper

A utility for mapping a genomic coordinate to a specific position in a corresponding CDS or AA sequence.

Requirements

  • refFlat.txt file - UCSC annotation file specific to each species
  • RefSeq ID - mRNA RefSeq Identifier (ex NM_146145)
  • Genomic Coordinate - nucloetide location on chromosome (ex 101153495)

Uses

Command Line Tool:

./mapper.py NM_146145 101153495 data/refFlatMm10.txt

Python Object:

from mapper import Mapper

mapper = Mapper("data/refFlatMm10.txt")
cds_pos, aa_pos = mapper.map(101153495, "NM_146145")

Tested using Python 2.7 and Python 3.5

About

Map genomic coordinates to CDS and AA position for a specific mRNA RefSeq ID.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages