Browse code

fix typo. #242

mikejiang authored on 12/09/2018 22:10:50
Showing 1 changed files

... ...
@@ -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