Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/d3/svCircos.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default function svCircos(parentTag, refChromosomes, data = null, options
//get our centerSymbolGroup and change the symbol to our magnify-out.svg
zoomOutButtonGroup
.append("image")
.attr("xlink:href", "/sv.iobio/frontend/magnify-out.svg")
.attr("xlink:href", "/magnify-out.svg")
.attr("x", width / 2 - 10)
.attr("y", 10)
.attr("width", 20)
Expand All @@ -244,7 +244,7 @@ export default function svCircos(parentTag, refChromosomes, data = null, options
//on top of this circle we will render the dna.svg that we have /dna.svg
zoomOutButtonGroup
.append("image")
.attr("xlink:href", "/sv.iobio/frontend/dna.svg")
.attr("xlink:href", "/dna.svg")
.attr("x", width / 2 - 10)
.attr("y", 10)
.attr("width", 20)
Expand Down
3 changes: 2 additions & 1 deletion src/dataHelpers/dataHelpers.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// const BACKEND_URL_BASE = "http://localhost:7477"; //Development
const BACKEND_URL_BASE = "https://mosaic-staging.chpc.utah.edu/sv.iobio/backend"; //Production
//const BACKEND_URL_BASE = "https://mosaic-staging.chpc.utah.edu/sv.iobio/backend"; //Production
const BACKEND_URL_BASE = "https://sv.iobio.io/backend"; //Production

//GET CROMOSOMES
export async function getChromosomes(build) {
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ export default defineConfig({
},
}),
],
base: "/sv.iobio/frontend/", //add a base path to the project
//base: "/sv.iobio/frontend/", //add a base path to the project
});