-
Notifications
You must be signed in to change notification settings - Fork 9
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
RcisTarget::addSignificantGenes error #27
Comments
I encountered the same problem, and after reviewing the source code I found that the problem was "motif_rankings-mm9-tss-centered-5kb-10species.mc9nr.genes_vs_motifs.rankings.feather". It has a lot of duplicate motif names in it. The solution is to use the old file named "mm9-tss-centered-10kb-10species.mc9nr.feather" from https://resources.aertslab.org/cistarget/databases/old/mus_musculus/mm9/refseq_r45/mc9nr/gene_based/ |
@joel-tuberosa, did you get anywhere with this other than changing to an old annotation file? I am having the exact same error. |
I just changed to the old file and then everything went well
发自我的iPhone
…------------------ Original ------------------
From: DavidS ***@***.***>
Date: Thu,Apr 20,2023 5:50 AM
To: aertslab/RcisTarget ***@***.***>
Cc: ZYT-ZhangYunTao19941116 ***@***.***>, Comment ***@***.***>
Subject: Re: [aertslab/RcisTarget] RcisTarget::addSignificantGenes error(Issue #27)
@joel-tuberosa, did you get anywhere with this other than changing to an old annotation file? I am having the exact same error.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
I think I know what is the problem: the new and old version of the databases have a the column where the names of the motifs are stored in differen positions. In old databases it is the first position (colum name 'features', while in the new ones it is at the end (column name 'motifs'). Unfortunately, the code for
I think this was intended to be handled before, within
So in principle it is independent of position, but However, I do not get the intended results from this message when I run
But with the new, I get:
'128up' is the name of the first Drosophila gene by alphanumeric ordering... but this cannot be the result of Anyway, the solution is to place the last column of the new database at the beginning before running
Hope this helps. |
This does it! Thanks for the advice! |
Hello,
I would like to perform an enrichment analysis with the following data:
target_genes
- a vector of gene names corresponding to the tested setmotif_rankings
- the loaded databasemm9-tss-centered-5kb-10species.mc9nr.genes_vs_motifs.rankings.feather
downloaded from heremotifAnnotations_mgi
- annotation data loaded from the package withdata(motifAnnotations_mgi)
I am running the following commands:
And I got this error message from the last command:
Do you have an idea how to fix this?
Thank you in advance.
Joël
The text was updated successfully, but these errors were encountered: