Bioinformatics.jl Documentation

Bioinformatics.dotmatrixMethod
function dotmatrix(s1::Sequence, s2::Sequence)

Calculate the dotplot matrix for given two sequences.

Bioinformatics.edit_distMethod
function edit_dist(s1::String, s2::String)

Calculate edit distance between two strings.

Bioinformatics.gc_contentMethod
function gc_content(seq::Sequence, window_size::Int64)

Calculate GC-content of given sequence using a window.

Bioinformatics.gravyMethod
function gravy(seq::Sequence)

The GRAVY value for a peptide or protein is calculated as the sum of hydropathy values of all the amino acids, divided by the number of residues in the sequence.

See also: https://web.expasy.org/protparam/protparam-doc.html.

Bioinformatics.instability_indexMethod
function instability_index(seq::Sequence)

The instability index provides an estimate of the stability of your protein in a test tube.

See also: https://web.expasy.org/protparam/protparam-doc.html.

Bioinformatics.protein_massFunction
function protein_mass(seq::Sequence, type = "monoisotopic")

Calculate mass of given amino acid sequence.

Bioinformatics.protparamMethod
function protparam(seq::Sequence)

Computes various physico-chemical properties that can be deduced from a protein sequence.

See also: https://web.expasy.org/protparam/protparam-doc.html.

Bioinformatics.skewMethod
function skew(seq::Sequence)

Calculate the skew values of sequence.

Bioinformatics.translationFunction
function translation(s::Sequence, start_pos::Int64 = 1)

Translate given DNA sequence to Amino Acid sequence.