Species

Returns the available species in the Ensembl FTP site

Arguments

NameShortLongDescription
Release-r--releaseEnsembl release version to use - will default to latest release
Data Type-d--datatypeDatatype to query species list [default: dna] [possible values: cdna, cds, dna, gff3, gtf, ncrna, pep]
Output-o--outputoptional filepath to write output to [default=stdout]

Command Line Interface

# return all species where there is a genome (i.e. dna)
ggetrs ensembl species

# return all species where there is a transcriptome (i.e. cdna)
ggetrs ensembl species -d cdna

# return all species where there is a transcriptome (i.e. cdna)
# for an older release
ggetrs ensembl species -d cdna -r 60

Python

import ggetrs

# return all species where there is a genome (i.e. dna)
ggetrs.ensembl.species()

# return all species where there is a transcriptome (i.e. cdna)
ggetrs.ensembl.species(dataype="dna")

# return all species where there is a transcriptome (i.e. cdna)
# for an older release
ggetrs.ensembl.species(dataype="cdna", release=60)