Skip to content

Commit

Permalink
Update pgSCXA.pm (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
anilthanki authored Oct 2, 2024
1 parent 5f2d268 commit 46e6094
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perl_modules/EBI/FGPT/Resource/Database/pgSCXA.pm
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ sub fetch_experiment_genes_from_sc_atlasdb {
my ( $self, $logger ) = @_;

my $query = "
SELECT scmg.gene_id, scmg.experiment_accession, e.species, e.pubmed_ids from scxa_marker_genes scmg, experiment e WHERE scmg.experiment_accession = e.accession
AND scmg.marker_probability <="."'$ENV{'MARKER_GENE_PVAL'}'" ."AND e.private = 'FALSE'";
SELECT scgmg.gene_id, scg.experiment_accession, e.species, e.pubmed_ids from scxa_cell_group_marker_genes scgmg, scxa_cell_group scg, experiment e WHERE scg.experiment_accession = e.accession
AND scgmg.cell_group_id = scg.id AND scgmg.marker_probability <="."'$ENV{'MARKER_GENE_PVAL'}'" ."AND e.private = 'FALSE'";

my $atlasDBH = $self->get_dbh;

Expand Down

0 comments on commit 46e6094

Please sign in to comment.