Skip to content
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

Main to stage #1314

Merged
merged 9 commits into from
May 2, 2024
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ test-alb-deploy:
prod-alb-deploy:
npx aws-cdk deploy prod-alb-stack

stage-ui-deploy:
npx aws-cdk deploy agr-ui-stage

test-ui-deploy:
npx aws-cdk deploy agr-ui-test

prod-ui-deploy:
npx aws-cdk deploy agr-ui-production

uirun:
npm start

Expand Down
2 changes: 1 addition & 1 deletion src/components/orthology/orthologyJBrowseLinkPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const geneLocationIsInvalid = (geneLocation) => {

const OrthologyJBrowseLinkPanel = ({geneLocation, taxonid}) => {
return (
geneLocationIsInvalid(geneLocation) ? null :
(geneLocationIsInvalid(geneLocation) || taxonid === 'NCBITaxon:2697049') ? null :
<div id='orthologyJBrowseLinkPanel'>
<span>Links to orthology data in JBrowse by filter level: </span>
<OrthologyJBrowseLink
Expand Down
1 change: 1 addition & 0 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ export const SPECIES = [
jBrowseurltemplate: 'tracks/All Genes/{refseq}/trackData.jsonz',
jBrowsefastaurl: 'https://s3.amazonaws.com/agrjbrowse/fasta/GCF_000001405.40_GRCh38.p14_genomic.fna.gz',
jBrowsetracks: '_all_genes',
jBrowseOrthologyTracks:'',
suppressFlatten: true,
vertebrate: false,
enableSingleCellExpressionAtlasLink: false,
Expand Down
Loading