Skip to content

Commit

Permalink
An improvement for gsea/gmt converter (try/match hgnc.symbol first)
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorRodchenkov committed Apr 29, 2024
1 parent 12edd01 commit 3ec3dc4
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -47,7 +47,9 @@ final class GMTConverter {
public GMTConverter()
{
idFetcher = new IdFetcher().chemDbStartsWithOrEquals("chebi")
.seqDbStartsWithOrEquals("hgnc symbol").seqDbStartsWithOrEquals("hgnc");
.seqDbStartsWithOrEquals("hgnc.symbol") //the order in the list does matter
.seqDbStartsWithOrEquals("hgnc symbol")
.seqDbStartsWithOrEquals("hgnc");
skipSubPathways = true;
minNumIdsPerEntry = 1;
skipOutsidePathways = false;
Expand Down

0 comments on commit 3ec3dc4

Please sign in to comment.