Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .infra/rdev/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ stack:
services:
explorer:
image:
tag: sha-b8d07c5
tag: sha-4f0a512
replicaCount: 1
env:
# env vars common to all deployment stages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Cytoband } from "../Cytoband/Cytoband";
import { CoverageToScale } from "./style";

export const ChromosomeMap = () => {
const BAR_WIDTH = 6; // Width of each bar in the coverage plot, adjust as needed
const BAR_WIDTH = 5; // Width of each bar in the coverage plot, adjust as needed
const scrollContainerRef = useRef<HTMLDivElement>(null);
const { selectedGene } = useChromatinViewerSelectedGene();

Expand All @@ -29,7 +29,7 @@ export const ChromosomeMap = () => {
const coverageQueries = useCoverageQuery({
cellTypes: selectedCellTypes,
geneName: formatSelectedGenes,
genomeVersion: "hg38", // TODO: (smccanny) make this dynamic
genomeVersion: "hg38", // TODO: (smccanny) make this dynamic from organism
options: {
enabled: !bottomPanelHidden,
retry: 3,
Expand Down
Loading