Skip to content
New issue

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

How to normalize data with single condition? #29

Open
bioysu opened this issue May 22, 2021 · 1 comment
Open

How to normalize data with single condition? #29

bioysu opened this issue May 22, 2021 · 1 comment

Comments

@bioysu
Copy link

bioysu commented May 22, 2021

Hello,

I created an object with data of single condition and tried to normalized it with ranked.glsf. But main.data is empty. I also tried to normalized it with no.norm. But main.data is still empty. Count you tell me how to fix it?

my.obj <- norm.data(my.obj, norm.method = "ranked.glsf", top.rank = 500)
my.obj <- norm.data(my.obj, norm.method = "no.norm")

@rezakj
Copy link
Owner

rezakj commented May 24, 2021

2 ways to do this; if you don't want to filter cells:

[email protected] <- [email protected]

And if you want to filter cells:

my.obj <- cell.filter(my.obj,
	min.mito = 0,
	max.mito = 0.05,
	min.genes = 200,
	max.genes = 2400,
	min.umis = 0,
	max.umis = Inf)

And if you don't want to normalize skip the normalization step.

Hope this helps!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants