Name Mode Size
.github 040000
R 040000
data 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 2 kb
NAMESPACE 100644 1 kb
NEWS.md 100644 0 kb
Pirat.Rproj 100644 0 kb
README.md 100644 1 kb
configure 100755 0 kb
configure.win 100755 0 kb
README.md
# Pirat ## Installation To install this package from Github: ``` install.packages('remotes') remotes::install_github('prostarproteomics/Pirat') ``` Once the package has been downloaded, it is necessary to install a Python environment with specific versions of Python libraries. This is the purpose of the function `install_Pirat_env()`. This function takes a long time to execute and need to be run only once. ``` library(Pirat) install_Pirat_env() ``` ## Test ``` data(subbouyssie) my_pipeline_llkimpute(subbouyssie) data(subropers) nsamples = nrow(subropers$peptides_ab) my_pipeline_llkimpute(subropers, extension = "T", rna.cond.mask = 1:nsamples, pep.cond.mask = 1:nsamples, max.pg.size.pirat.t = 1) ```