We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was under the impression that the group/batch argument should somehow modify the batch correction outcome, but it doesn't. Is that intended?
group
batch
pbmcsca <- SeuratData::LoadData("pbmcsca")
pbmcsca -> obj obj[["RNA"]] <- split(obj[["RNA"]], f = obj$Method) obj <- NormalizeData(obj) obj <- FindVariableFeatures(obj) obj <- ScaleData(obj) obj <- RunPCA(obj) obj <- IntegrateLayers(object = obj, method = FastMNNIntegration, new.reduction = 'integrated.mnn', verbose = FALSE)
pbmcsca -> obj2 obj2[["RNA"]] <- split(obj2[["RNA"]], f = obj2$Method) obj2 <- NormalizeData(obj2) obj2 <- FindVariableFeatures(obj2) obj2 <- ScaleData(obj2) obj2 <- RunPCA(obj2) obj2[['RNA']] <- JoinLayers(obj2[['RNA']]) obj2 <- IntegrateLayers(object = obj2, method = FastMNNIntegration, new.reduction = 'integrated.mnn', batch=obj2$Method, verbose = FALSE) DimPlot(obj2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was under the impression that the
group
/batch
argument should somehow modify the batch correction outcome, but it doesn't. Is that intended?The text was updated successfully, but these errors were encountered: