Automatic gene symbols lookup in plotting
See original GitHub issueIn plotting functions: Why not automatically lookup gene symbols from .var['gene_symbols']
if it’s present? Then we don’t have to add and check for a gene_symbols
parameter everywhere…
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:11 (11 by maintainers)
Top Results From Across the Web
Automatic gene symbols lookup in plotting · Issue #385 - GitHub
In plotting functions: Why not automatically lookup gene symbols from .var['gene_symbols'] if it's present? Then we don't have to add and ...
Read more >Gene annotation in Ensembl
Gene annotation is the plotting of genes onto genome assemblies, and indexing their genomic coordinates. Gene annotation provided by Ensembl includes automatic ......
Read more >Gene symbols on MA-plot
I would like to include gene symbols on a MA plot in the same manner as is implemented in the volcano plot command....
Read more >Generate bootstrap plots — generate_bootstrap_plots • EWCE
List of gene symbols containing the background gene list (including hit genes). If bg=NULL , an appropriate gene background will be created automatically....
Read more >Geneshot: search engine for ranking genes from arbitrary text ...
Several tools have been developed to identify gene sets given arbitrary PubMed search terms. For example, the tool Gene List Automatically ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I wasn’t aware of
read_10x_h5
creating a.var['gene_symbols']
column. In that case it’s quite an elegant solution for people who read in 10x data directly. There will probably be more people who useread_10x_h5
andread_10x_mtx
than people who do not want to plot gene symbols. In that case I guess the convenience of the many outweighs the needs of the few.Maybe output something to say that the
gene_symbols
column invar
is being used for plotting when it is found. Then it’s not like some magic is happening in the background of which the user is ignorant.Seems like it!