Browse code

Document missing chrom argument for chromatogram(s)

Sebastian Gibb authored on 29/04/2018 07:53:05
Showing 3 changed files

... ...
@@ -2,7 +2,7 @@ Package: mzR
2 2
 Type: Package
3 3
 Title: parser for netCDF, mzXML, mzData and mzML and mzIdentML files
4 4
        (mass spectrometry data)
5
-Version: 2.13.7
5
+Version: 2.13.8
6 6
 Author: Bernd Fischer, Steffen Neumann, Laurent Gatto, Qiang Kou, Johannes Rainer
7 7
 Maintainer: Steffen Neumann <sneumann@ipb-halle.de>,
8 8
 	    Laurent Gatto <lg390@cam.ac.uk>,
... ...
@@ -1,3 +1,7 @@
1
+CHANGES IN VERSION 2.13.8
2
+-------------------------
3
+ o Document missing chrom argument for chromatogram(s)
4
+
1 5
 CHANGES IN VERSION 2.13.7
2 6
 -------------------------
3 7
  o Add a missing header needed on gcc 6.2.0
... ...
@@ -57,9 +57,9 @@
57 57
 
58 58
  get3Dmap(object, scans, lowMz, highMz, resMz, ...)
59 59
 
60
- chromatogram(object, ...) 
60
+ \S4method{chromatogram}{mzRpwiz}(object, chrom)
61 61
 
62
- chromatograms(object, ...) ## same as chromatogram
62
+ \S4method{chromatograms}{mzRpwiz}(object, chrom)  ## same as chromatogram
63 63
 
64 64
  \S4method{chromatogramHeader}{mzRpwiz}(object, chrom)
65 65
 
... ...
@@ -84,7 +84,8 @@
84 84
   \item{resMz}{a \code{numeric} defining the m/z resolution.}
85 85
 
86 86
   \item{chrom}{
87
-    For \code{chromatogramHeader}: \code{numeric} specifying the index
87
+    For \code{chromatogram}, \code{chromatograms} and
88
+    \code{chromatogramHeader}: \code{numeric} specifying the index
88 89
     of the chromatograms to be extracted from the file. If omitted, data
89 90
     for all chromatograms is returned. 
90 91
   }