Mercurial > repos > bornea > saint_preprocessing
annotate flatten_mzIdentML.R @ 72:5ec0b997fb13 draft
Uploaded
| author | bornea |
|---|---|
| date | Sat, 27 Aug 2016 23:26:10 -0400 |
| parents | d8cc862e6412 |
| children | 47aa4f551c53 |
| rev | line source |
|---|---|
| 66 | 1 #! /usr/bin/Rscript |
| 2 args <- commandArgs(trailingOnly = TRUE) | |
| 3 #source("https://bioconductor.org/biocLite.R") | |
| 4 #biocLite("mzID") | |
| 5 library(mzID) | |
| 6 library(dplyr) | |
| 7 mzResults <- mzID(args[1]) | |
| 8 flatresults <- flatten(mzResults) | |
| 9 write.table(flatresults,"flat_mzIdentML.txt",sep="\t",quote=FALSE,row.names=FALSE) |
