Browse Source

Correción bug en gates_save

main
marcelcosta 7 months ago
parent
commit
faae730ac0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      functionsCyto.R

+ 1
- 1
functionsCyto.R

@ -236,7 +236,7 @@ LMD2FCS<-function(files, output.dir=NULL){
gates_save<-function(gs, file="gates.rds", save=T, include=NULL){
gates.list<-list()
pop_paths_full<-gs_get_pop_paths(gs)[gs_get_pop_paths(gs) != "root"]
if(!is.null(include)){pop_paths_full<-pop_paths_full[pop_paths %in% include]}
if(!is.null(include)){pop_paths_full<-pop_paths_full[pop_paths_full %in% include]}
pop_paths<-lapply(pop_paths_full, function(x) rev(rev(strsplit(x, "/")[[1]])[1:2]))
for (gate.in in 1:length(pop_paths)){
gate<-pop_paths[[gate.in]]

Loading…
Cancel
Save