No description
Find a file
2018-11-27 12:43:50 -05:00
examples removed string nil's in example programs 2018-11-19 13:15:07 -05:00
src use quality if exists 2018-11-27 12:43:50 -05:00
tests include GZFileStream support while still keeping bzip2 support 2018-11-21 14:17:54 -05:00
LICENSE.md License added 2018-07-16 11:01:30 -04:00
nimbioseq.nimble fix drop through on gzip 2018-11-26 20:45:28 -05:00
README.md better formmating 2018-07-16 16:01:17 -04:00

Module nimbioSeq

Imports

sequtils, strutils, math, tables, osproc, streams

Types

Record = object

id*: string

description*: string

quality*: string

sequence*: string

This type represents a genetic sequence with optional quality

Procs

proc reverseComplement(self: Record): Record {..}

proc toFasta(self: Record; lineLength = 60): string {..} returns FASTA formatted string of sequence record

proc qualToChar(q: int): char {..} returns character for a given Illumina quality score

proc charToQual(c: char): int {..} returns Illumina quality score for a given character

proc toFastq(self: Record; qualityValue = 30): string {..} returns FASTQ formatted string of sequence record with given quality value to be applied to sequence

proc length(self: Record): int {..} returns length of sequence

proc kmer2num(kmer: string): int {..} converts a kmer string into an integer 0..4^(len-1)

proc num2kmer(num, klen: int): string {..} converts an integer into a kmer string given the number and length of kmer

proc toKmerFrequency(self: Record; klen: int; includeComplement = false): seq[int] {..} returns (overlapping) kmer frequencies of a nucleotide sequence

proc gc(self: Record): int {..} returns the number of bases that are G or C

proc ambiguous(self: Record): int {..} returns the number of bases that are not AGCTU

proc translate(self: Record; code = 1): Record {..} translates a nucleotide sequence with the given genetic code number

Iterators

iterator compressedLines(filename: string): string {..} iterator to read lines of a (maybe) compressed text file transparently

iterator readFasta(filename: string): Record {..} iterator to iterate over the FASTA records in a file

iterator readFastq(filename: string): Record {..} iterator to iterate over the FASTQ records in a file

iterator readSeqs(filename: string): Record {..}