Skip to content

Commit

Permalink
corrected typo in readSampleFiles()
Browse files Browse the repository at this point in the history
  • Loading branch information
phauchamps committed May 10, 2024
1 parent a330677 commit c318728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/CytoProcessingStepImplementations.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit c318728

Please sign in to comment.