Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 640 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 640 Bytes

Rfam Julia package

Julia package to interface with the Rfam database. Only takes care of finding, downloading, and returning the path to files from the database (e.g. Rfam.cm, fasta files, etc.).

Installation

This package is registered. Install with:

import Pkg
Pkg.add("Rfam")

This package does not export any symbols.

Example

import Rfam
import FASTX

fasta = Rfam.fasta_file("RF00162"); # downloads `RF00162.fasta` file and returns local path
records = collect(FASTX.FASTA.Reader(open(fasta))); # convert to Fasta records

Related