airpg

Accessing the inverted repeats of archived plastid genomes

https://github.com/michaelgruenstaeudl/airpg

Science Score: 36.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
    Found 2 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.6%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Accessing the inverted repeats of archived plastid genomes

Basic Info
  • Host: GitHub
  • Owner: michaelgruenstaeudl
  • License: gpl-3.0
  • Language: Python
  • Default Branch: main
  • Size: 165 KB
Statistics
  • Stars: 4
  • Watchers: 3
  • Forks: 0
  • Open Issues: 1
  • Releases: 10
Created over 5 years ago · Last pushed about 2 years ago
Metadata Files
Readme Changelog License Authors

README.md

airpg: Automatically accessing the inverted repeats of archived plastid genomes

Build Status PyPI status PyPI pyversions PyPI version shields.io PyPI license

A Python package for automatically accessing the inverted repeats of thousands of plastid genomes stored on NCBI Nucleotide

INSTALLATION

To get the most recent stable version of airpg, run:

pip install airpg

Or, alternatively, if you want to get the latest development version of airpg, run:

pip install git+https://github.com/michaelgruenstaeudl/airpg.git

Update May 2024 (tested on Debian)

To install airpg, clone it via git, cd into the cloned directory, open a terminal and run:

sudo pip install .

EXAMPLE USAGE

Tutorial 1: Very short survey (runtime ca. 5 min.; for the impatient)

Survey of all plastid genomes of flowering plants submitted to NCBI Nucleotide within the past 10 days.

Tutorial 2: Short survey (runtime ca. 15 min.; for testing)

Survey of all plastid genomes of flowering plants submitted to NCBI Nucleotide within the current month.

Tutorial 3: Medium survey (runtime ca. 5 hours)

Survey of all plastid genomes of flowering plants submitted to NCBI Nucleotide in 2019 only. Note: The results of this survey are available on Zenodo via DOI 10.5281/zenodo.4335906

Tutorial 4: Full survey (runtime ca. 19 hours; with explanations)

Survey of all plastid genomes of flowering plants submitted to NCBI Nucleotide from January 2000 until, and including, December 2020. Note: The results of this survey are available on Zenodo via DOI 10.5281/zenodo.4335906

TIPS & TRICKS

How to sort output_script1.tsv

sort -t$'\t' -k7.1,7.4 -k7.6,7.7 -k7.9,7.10 -n output_script1.tsv > output_script1.sorted.tsv awk '{print $2}' output_script1.sorted.tsv > output_script1.sorted.index

How to sort output_script2.tsv and output_script3.tsv

awk 'NR==FNR{o[FNR]=$1; next} {t[$1]=$0} END{for(x=1; x<=FNR; x++){y=o[x]; print t[y]}}' output_script1.sorted.index output_script2.tsv > output_script2.sorted.tsv awk 'NR==FNR{o[FNR]=$1; next} {t[$1]=$0} END{for(x=1; x<=FNR; x++){y=o[x]; print t[y]}}' output_script1.sorted.index output_script3.tsv > output_script3.sorted.tsv

How to measure the number of angiosperm families represented by the plastid genomes archived on GenBank

```

Using the sorted output of script1 as input

awk -F'\t' '{print $11}' output_script1.sorted.tsv | tr ";" "\n" | grep "aceae" | grep -v "incertae sedis" | sort -u | wc -l ```

CHANGELOG

See CHANGELOG.md for a list of recent changes to the software.

Owner

  • Name: Michael Gruenstaeudl, PhD
  • Login: michaelgruenstaeudl
  • Kind: user
  • Location: Hays, Kansas
  • Company: Fort Hays State University

Assistant Professor, Fort Hays State University

GitHub Events

Total
Last Year

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 83
  • Total Committers: 2
  • Avg Commits per committer: 41.5
  • Development Distribution Score (DDS): 0.193
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Michael Gruenstaeudl m****l@g****m 67
TilMeh g****b@t****e 16
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 2
  • Total pull requests: 0
  • Average time to close issues: about 2 months
  • Average time to close pull requests: N/A
  • Total issue authors: 2
  • Total pull request authors: 0
  • Average comments per issue: 1.5
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • michaelgruenstaeudl (1)
  • kazumaxneo (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 81 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 1
  • Total versions: 21
  • Total maintainers: 2
pypi.org: airpg

A package to automatically access the inverted repeats of archived plastid genomes

  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 81 Last month
Rankings
Dependent packages count: 10.0%
Downloads: 14.5%
Average: 20.2%
Dependent repos count: 21.7%
Stargazers count: 25.0%
Forks count: 29.8%
Maintainers (2)
Last synced: 11 months ago

Dependencies

requirements.txt pypi
  • argparse >=1.4.0
  • biopython >=1.72
  • entrezpy *
  • ete3 *
  • pandas *
setup.py pypi
  • biopython *
  • coloredlogs *
  • entrezpy *
  • ete3 *
  • fuzzywuzzy *
  • pandas *
  • python-Levenshtein *