Nothing
#!/usr/bin/Rscript
create.protein.group <- function(id.files,file="protein.group.rda") {
message("Identification files used for ProteinGroup creation: \n\t",paste(id.files,collapse="\n\t"),"\n")
suppressPackageStartupMessages(library(isobar))
# create an IBSpectra object with all identifications
protein.group <- readProteinGroup(id.files)
proteinInfo(protein.group) <- getProteinInfoFromUniprot(protein.group)
print(protein.group)
# save ProteinGroup object
save(protein.group,file=file)
message("\nSaved ProteinGroup object to ",file,".\n")
}
message("## CREATE PROTEINGROUP SCRIPT ##\n")
if (length(commandArgs(TRUE)) == 0)
stop("Provide at least one id file as argument!\n")
args <- commandArgs(TRUE)
create.protein.group(args[2:length(args)],args[1])
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.