From c3187280306f91d870bee898171681d2bd03cc6b Mon Sep 17 00:00:00 2001 From: phauchamps Date: Fri, 10 May 2024 16:15:05 +0200 Subject: [PATCH] corrected typo in readSampleFiles() --- R/CytoProcessingStepImplementations.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/CytoProcessingStepImplementations.R b/R/CytoProcessingStepImplementations.R index fe497aa..937bcf4 100644 --- a/R/CytoProcessingStepImplementations.R +++ b/R/CytoProcessingStepImplementations.R @@ -244,10 +244,10 @@ readSampleFiles <- function(sampleFiles, } channelMarkerMapping <- utils::read.csv(channelMarkerFile) - if (!("Channel" %in% flowCore::colnames(channelMarkerMapping))) { + if (!("Channel" %in% colnames(channelMarkerMapping))) { stop("channelMarkersMapping should contain [Channel] column!") } - if (!("Marker" %in% flowCore::colnames(channelMarkerMapping))) { + if (!("Marker" %in% colnames(channelMarkerMapping))) { stop("channelMarkersMapping should contain [Marker] column!") } if ("Used" %in% colnames(channelMarkerMapping)) {