Skip to content

Commit

Permalink
fixup(browser): clean up misc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyhgrant committed Oct 22, 2024
1 parent 6d944a3 commit b71397d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 58 deletions.
57 changes: 0 additions & 57 deletions browser/src/GenePage/GenePageContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,63 +162,6 @@ query ${operationName}($geneId: String, $geneSymbol: String, $referenceGenome: R
}
`

// adipose_subcutaneous
// adipose_visceral_omentum
// adrenal_gland
// artery_aorta
// artery_coronary
// artery_tibial
// bladder
// brain_amygdala
// brain_anterior_cingulate_cortex_ba24
// brain_caudate_basal_ganglia
// brain_cerebellar_hemisphere
// brain_cerebellum
// brain_cortex
// brain_frontal_cortex_ba9
// brain_hippocampus
// brain_hypothalamus
// brain_nucleus_accumbens_basal_ganglia
// brain_putamen_basal_ganglia
// brain_spinal_cord_cervical_c_1
// brain_substantia_nigra
// breast_mammary_tissue
// cells_ebv_transformed_lymphocytes
// cells_cultured_fibroblasts
// cervix_ectocervix
// cervix_endocervix
// colon_sigmoid
// colon_transverse
// esophagus_gastroesophageal_junction
// esophagus_mucosa
// esophagus_muscularis
// fallopian_tube
// heart_atrial_appendage
// heart_left_ventricle
// kidney_cortex
// liver
// lung
// minor_salivary_gland
// muscle_skeletal
// nerve_tibial
// ovary
// pancreas
// pituitary
// prostate
// skin_not_sun_exposed_suprapubic
// skin_sun_exposed_lower_leg
// small_intestine_terminal_ileum
// spleen
// stomach
// testis
// thyroid
// uterus
// vagina
// whole_blood
//
// cells_transformed_fibroblasts
// cells_transformed_fibroblasts

type Props = {
datasetId: DatasetId
geneIdOrSymbol: string
Expand Down
2 changes: 1 addition & 1 deletion browser/src/GenePage/GeneTranscriptsTrack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const GeneTranscriptsTrack = ({

const circleRadiusMeanContribution = meanExpression === 0 ? 0 : 0.25
const circleRadiusMaxMeanContribution =
maxMeanExpression === 0 ? 0 : meanExpression / maxMeanExpression! // if the right panel render, maxMean is defined
maxMeanExpression === 0 ? 0 : meanExpression / maxMeanExpression!
const circleRadius = Math.sqrt(
circleRadiusMeanContribution + 23.75 * circleRadiusMaxMeanContribution
)
Expand Down

0 comments on commit b71397d

Please sign in to comment.