bump x.y.z version to odd y following creation of RELEASE_3_19 branch
Release: Devel:
This package cleaves polypeptide sequences. The cleavage rules are taken from: https://web.expasy.org/peptide_cutter/peptidecutter_enzymes.html
cleaver is part of Bioconductor.
install.packages("devtools") library("devtools") install_github("sgibb/cleaver")
## load library library("cleaver") ## Gastric juice peptide 1 (UniProtKB/Swiss-Prot: GAJU_HUMAN/P01358) gaju <- "LAAGKVEDSD" cleave(gaju, "trypsin") # $LAAGKVEDSD # [1] "LAAGK" "VEDSD" cleave(gaju, "trypsin", missedCleavages=1) # $LAAGKVEDSD # [1] "LAAGKVEDSD" cleave(gaju, "trypsin", missedCleavages=0:1) # $LAAGKVEDSD # [1] "LAAGK" "VEDSD" "LAAGKVEDSD" cleave(gaju, "pepsin") # $LAAGKVEDSD # [1] "LAAGKVEDSD" # (no cleavage)
用于蛋白质组学中蛋白质序列的酶切预测和肽段生成
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802047560号
cleaver
Description
This package cleaves polypeptide sequences. The cleavage rules are taken from: https://web.expasy.org/peptide_cutter/peptidecutter_enzymes.html
cleaver is part of Bioconductor.
Install development version (not recommended)
Usage