Skip to content
Snippets Groups Projects
Commit 6967579e authored by Thomas  OBADIA's avatar Thomas OBADIA
Browse files

Handle the possible presence of a Description fiels in Bioplex exports

parent 626b39cb
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,7 @@ runRelativeAntibodyUnits = function(fname1, fname2, MFI_CSV, MFI_N_ANTIGENS, TEM
dplyr::mutate(Location = paste0(1:n(), "(1,", Location, ")"))
# Remove columns that are not MFI readings or sample code / location
L <- L[, !(colnames(L) %in% c("Region", "Gate", "Total", "% Agg Beads", "Sampling Errors"))]
L <- L[, !(colnames(L) %in% c("Region", "Gate", "Total", "% Agg Beads", "Sampling Errors", "Description"))]
# Antigen names clean-up
colnames(L) = gsub("\\..*", "", colnames(L))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment