findSegPeakList: Selecting the peaks in a segment

Description Usage Arguments Details Value Author(s) See Also Examples

Description

This function is to find out which peaks belonging to a segment which ranges from startP to endP

Usage

1
2
3
findSegPeakList(peakList,
                startP,
                endP)

Arguments

peakList

The peak lists of the spectra.

startP

The starting point of the segment.

endP

The ending point of the segment.

Details

This function is to find out which peaks belonging to a segment which ranges from startP to endP

Value

The list of indices of the peaks in the segment.

Author(s)

Trung Nghia Vu

See Also

dohClusterCustommedSegments

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
res=makeSimulatedData();
X=res$data;
groupLabel=res$label;


peakList <- detectSpecPeaks(X,
  nDivRange = c(128),                
  scales = seq(1, 16, 2),
  baselineThresh = 50000,
  SNR.Th = -1,
    verbose=FALSE
);

cat("\n ", peakList[[1]])
segmentpeakList= findSegPeakList(peakList[[1]],400,600);
cat("\n ", segmentpeakList)

nghiavtr/speaq documentation built on May 20, 2019, 5:27 p.m.