Replies: 1 comment 2 replies
-
As explained in the doc, |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, thank you for the great tool.
I have a question about Integrated data.
I normalized datasets with SCTransform, where return.only.var.genes were set TRUE or FALSE.
obj1T <- SCTransform( obj1, return.only.var.genes = T );
obj2T <- SCTransform( obj2, return.only.var.genes = T );
obj1F <- SCTransform( obj1, return.only.var.genes = F );
obj2F <- SCTransform( obj2, return.only.var.genes = F );
After I integrated obj1T and obj2T, and obj1F and obj2F, I saw that [email protected] were different.
I would like to ask you which normalization is recommended.
Beta Was this translation helpful? Give feedback.
All reactions