... | ... |
@@ -511,7 +511,7 @@ setMethod("GatingSet", c("GatingHierarchy", "character"), function(x, y, path=". |
511 | 511 |
|
512 | 512 |
## try to match marker from comp with flow data in case flowJo is not consistent with data |
513 | 513 |
if(channel.ignore.case) |
514 |
- tolower(markerInd) <- tolower(match(marker, cnd)) |
|
514 |
+ markerInd <- match(tolower(marker), tolower(cnd)) |
|
515 | 515 |
else |
516 | 516 |
markerInd <- match(marker, cnd) |
517 | 517 |
|