Work with nucleotides

SimpleBio.transcriptFunction
transcript(x::String)

transcription of the imput DNA equence. This function only allow DNA sequence with A, T, C, G bases. If there are other kind of base in the DNA sequence, consider using xtranscript(x::String)

source
SimpleBio.xtranscriptFunction
xtranscript(x::String)

transcription of the imput DNA equence. This function allow DNA sequences with bases not included in A, T, C, G.

source
SimpleBio.DNArcFunction
DNArc(x::String)

This is the function for generating a reverse-compliment sequence to the entered sequence in string type.

source
SimpleBio.RNArcFunction
RNArc(x::String)

This is the function for generating a reverse-compliment sequence to the entered sequence in string type.

source
SimpleBio.RandSeqFunction
RandSeq(type::String, length::Int64)

Generate random sequence of select type (RNA, DNA or aminoacid). Acceptable parameters of type: DNA: ["DNA", "DNAs", "DNA nucleotides", "DNA chain", "dna", "dnas", "dna nucleotides", "dna chain"] RNA: ["RNA", "RNAs", "RNA nucleotides", "RNA chain", "rna", "rnas", "rna nucleotides", "rna chain"] amino acid: ["AminoAcid", "aminoacid", "amino acid", "peptide", "aa", "AA"]

source
RandSeq(type::String, length::Int64, num::Int64)

Generate inputted numbers of random sequence of select type (RNA, DNA or aminoacid). Acceptable parameters of type: DNA: ["DNA", "DNAs", "DNA nucleotides", "DNA chain", "dna", "dnas", "dna nucleotides", "dna chain"] RNA: ["RNA", "RNAs", "RNA nucleotides", "RNA chain", "rna", "rnas", "rna nucleotides", "rna chain"] amino acid: ["AminoAcid", "aminoacid", "amino acid", "peptide", "aa", "AA"]

source
RandSeq(operator::Int64, type::String, length::Int64, num::Int64)

Generate inputted numbers of random sequence of select type (RNA, DNA or aminoacid). operator = 1 to get array returned. Acceptable parameters of type: DNA: ["DNA", "DNAs", "DNA nucleotides", "DNA chain"] RNA: ["RNA", "RNAs", "RNA nucleotides", "RNA chain"] amino acid: ["AminoAcid", "aminoacid", "amino acid", "peptide", "aa", "AA"]

source
SimpleBio.translatednaFunction
translatedna(x::String)

Return the translation result of the input DNA or RNA sequence in 3-letter amino acid codes.

source
translatedna(operator::Int64, x::String)

Return the translation result of the input DNA or RNA sequence in 1-letter amino acid codes while operator enter =1.

source
SimpleBio.rand_dna_rnaFunction
rand_dna_rna(length::Int64, number::Int64)

Generate a dataframe of DNA sequences and transcripted RNAs with typed in length and number.

source