Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (5.3%) to scientific vocabulary
Keywords
Repository
liftover for python, made fast with cython
Basic Info
Statistics
- Stars: 89
- Watchers: 1
- Forks: 6
- Open Issues: 0
- Releases: 17
Topics
Metadata Files
README.md
python liftover utility
Converts point coordinates between genome assemblies.
Inspired by pyliftover, this
offers a few advantages:
- ~5X faster, and lower memory requirements, as loading the chain file and
converting coordinates is implemented in c++.
- dictionary style conversion, as in access converted coordinates via
converter[chrom][pos]
Installation
Install via pip: pip install liftover
Usage
```python from liftover import get_lifter
converter = getlifter('hg19', 'hg38', onebased=True) chrom = '1' pos = 103786442 converter[chrom][pos]
other synonyms for the lift call
converter.convert_coordinate(chrom, pos) converter.query(chrom, pos)
alternatively create a converter directly from a chainfile
from liftover import ChainFile converter = ChainFile('/home/user/hg18ToHg38.over.chain.gz', one_based=True) converter[chrom][pos]
you can also specify an alternative website to load chain files from
converter = getlifter('hg19', 'hg38', chainserver='https://www.example.com') ```
Owner
- Name: Jeremy McRae
- Login: jeremymcrae
- Kind: user
- Location: San Francisco Bay Area
- Company: Illumina
- Repositories: 28
- Profile: https://github.com/jeremymcrae
GitHub Events
Total
- Issues event: 2
- Watch event: 11
- Push event: 3
- Create event: 1
Last Year
- Issues event: 2
- Watch event: 11
- Push event: 3
- Create event: 1
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| Jeremy McRae | j****e@i****m | 65 |
| Jeremy McRae | j****e@g****m | 13 |
| Nicholas Knoblauch | k****h@h****m | 1 |
| marius-mather | 6****r | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 18
- Total pull requests: 4
- Average time to close issues: 25 days
- Average time to close pull requests: about 11 hours
- Total issue authors: 18
- Total pull request authors: 4
- Average comments per issue: 1.61
- Average comments per pull request: 0.75
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 1
Past Year
- Issues: 1
- Pull requests: 1
- Average time to close issues: 20 days
- Average time to close pull requests: about 21 hours
- Issue authors: 1
- Pull request authors: 1
- Average comments per issue: 1.0
- Average comments per pull request: 0.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 1
Top Authors
Issue Authors
- xiucz (1)
- Shicheng-Guo (1)
- TheKursta (1)
- spsc83 (1)
- Dearwunan (1)
- ahstram (1)
- Yiming-Shen (1)
- akotlar (1)
- mbaudis (1)
- dprat (1)
- lidd77 (1)
- rkimoakbioinformatics (1)
- ichauchcc (1)
- leipzig (1)
- Mr-Milk (1)
Pull Request Authors
- akotlar (2)
- dependabot[bot] (2)
- CreRecombinase (1)
- marius-mather (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 4,806 last-month
- Total dependent packages: 6
- Total dependent repositories: 5
- Total versions: 24
- Total maintainers: 1
pypi.org: liftover
Package for converting between genome build coordinates
- Homepage: https://github.com/jeremymcrae/liftover
- Documentation: https://liftover.readthedocs.io/
- License: MIT
-
Latest release: 1.3.2
published about 1 year ago
Rankings
Maintainers (1)
Dependencies
- actions/checkout v3 composite
- actions/download-artifact v3 composite
- actions/setup-python v4 composite
- actions/upload-artifact v3 composite
- pypa/cibuildwheel v2.9.0 composite
- pypa/gh-action-pypi-publish release/v1 composite
- urllib3 *