You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Query("select user_gene from UserGene user_gene where user_gene.geneId in (select ortholog.geneId from GeneInfo gene_info join gene_info.orthologs as ortholog where gene_info.geneId = :geneId and ortholog.taxon = :taxon)")
* @param taxonId a taxon identifier in which to perform orthology search from
88
+
* @return a collection of tuple whose first element is a {@link UserGene} and second element is the corresponding
89
+
* {@link GeneInfo} ortholog in the supplied taxon.
90
+
*/
91
+
@Query(value = "select gi.gene_id from gene_info as gi join ortholog on gi.id = ortholog.source_gene join gene_info as gi2 on gi2.id = ortholog.target_gene join gene ug on ug.gene_id = gi2.gene_id where gi.taxon_id = :taxonId", nativeQuery = true)
0 commit comments