Entering edit mode
23 months ago
shome
▴
10
I am trying to read a CSV file containing processed counts using the following command :
adata = sc.read_csv('GSM4885427_E18_JS-8_processed_counts.csv')
It results in AnnData object with n_obs × n_vars = 31053 × 11392
adata.var_names_make_unique()
adata.pl.highest_expr_genes(adata, n_top=20, )
This results in a figure like this:
What needs to be done so that it shows gene names instead of these read sequences?
Thank you! It worked!
I've moved LChart's comment to an answer. Please accept it to mark the post as solved.