Displaying 4 results from an estimated 4 matches for "msprocess".
2011 Aug 08
1
msProcess, creating msSet file(s)
I have 120 MS chromatograms containing two columns'Time' and 'Peak height'.
how do in create a msSet file which is required by all the functions of
'msProcess' to process these files.
I would appreciate help very much.
Thanks
Sharad
--
View this message in context: http://r.789695.n4.nabble.com/msProcess-creating-msSet-file-s-tp3727959p3727959.html
Sent from the R help mailing list archive at Nabble.com.
2010 Dec 14
3
peak detection
Hi,
I was wondering if anyone knows of a package that contains the ability
for peak/valley detection. Here is an example of what I'm looking for,
only problem is that it's written in Matlab.
http://www.billauer.co.il/peakdet.html
Thanks for any help in advance.
-Joe
2010 Aug 25
1
Documenting S4 Methods
I'm in the process of converting some S3 methods to S4 methods.
I have this function :
setGeneric("enrichmentCalc", function(rs, organism, seqLen, ...){standardGeneric("enrichmentCalc")})
setMethod("enrichmentCalc", c("GenomeDataList", "BSgenome"), function(rs, organism, seqLen, ...) {
... ... ...
})
2010 Dec 28
3
Error in combined for() and if() code
Hello,
I am trying to filter a data set like below so that the peaks in the Phase
value are more obvious and can be identified by a peak finding function
following the useful advise of Carl Witthoft. I have written the following
for(i in length(data$Phase)){
newphase=if(abs(data$Phase[i+1]-data$Phase[i])>6){
data$Phase[i+1]
}else{data$Phase[i]
}
}
I get the following error which I have not