Skip to content

Commit 6d5044d

Browse files
committed
Recognize also MS.MS.count columns
1 parent 82b0d8a commit 6d5044d

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

R/importExperiment.R

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
"Abundances.grouped"
3939
} else if (patmatch1 == "MS.MS.Count.") {
4040
"MS.MS.Count"
41+
} else if (patmatch1 == "MS.MS.count.") {
42+
"MS.MS.count"
4143
} else if (patmatch1 == "Sequence.coverage.") {
4244
"Sequence.coverage"
4345
} else if (patmatch1 == "Unique.peptides.") {
@@ -123,10 +125,17 @@ importExperiment <- function(inFile, iColPattern, includeOnlySamples = "",
123125
excludeSamples = "", ...) {
124126
## List of assays to create/allowed column patterns
125127
pats <- c(## MaxQuant
126-
"^MS\\.MS\\.Count\\.", "^LFQ\\.intensity\\.",
127-
"^Intensity\\.", "^Sequence\\.coverage\\.",
128-
"^Unique\\.peptides\\.", "^Razor\\.+unique\\.peptides\\.",
129-
"^Peptides\\.", "^iBAQ\\.", "^Top3\\.", "^Identification\\.type\\.",
128+
"^MS\\.MS\\.Count\\.",
129+
"^MS\\.MS\\.count\\.",
130+
"^LFQ\\.intensity\\.",
131+
"^Intensity\\.",
132+
"^Sequence\\.coverage\\.",
133+
"^Unique\\.peptides\\.",
134+
"^Razor\\.+unique\\.peptides\\.",
135+
"^Peptides\\.",
136+
"^iBAQ\\.",
137+
"^Top3\\.",
138+
"^Identification\\.type\\.",
130139
## ProteomeDiscoverer
131140
"^Abundance\\.",
132141
"^Abundance\\.F[0-9]+\\.",

0 commit comments

Comments
 (0)