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

Change references to "populations" in API to "ancestry groups" #1457

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ type Props = {
variant: {
pos: number
end: number
type: string
}
width: number
}
Expand Down
61 changes: 0 additions & 61 deletions browser/src/CopyNumberVariantList/CopyNumberVariantPropType.ts

This file was deleted.

6 changes: 3 additions & 3 deletions browser/src/CopyNumberVariantList/CopyNumberVariantTracks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Track } from '@gnomad/region-viewer'

import Link from '../Link'
import CopyNumberVariantPlot from './CopyNumberVariantPlot'
import CopyNumberVariantPropType from './CopyNumberVariantPropType'
import { CopyNumberVariant } from '../CopyNumberVariantPage/CopyNumberVariantPage'

type RowProps = {
data: {
Expand All @@ -15,7 +15,7 @@ type RowProps = {
onHover: (...args: any[]) => any
scalePosition: (...args: any[]) => any
trackColor: (...args: any[]) => any
variants: CopyNumberVariantPropType[]
variants: CopyNumberVariant[]
width: number
}
index: number
Expand Down Expand Up @@ -67,7 +67,7 @@ type OwnCopyNumberVariantTracksProps = {
onScroll: (...args: any[]) => any
trackColor: (...args: any[]) => any
trackHeight: number
variants: CopyNumberVariantPropType[]
variants: CopyNumberVariant[]
}

// @ts-expect-error TS(2456) FIXME: Type alias 'OwnCopyNumberVariantTracksProps' circular... Remove this comment to see the full error message
Expand Down
4 changes: 2 additions & 2 deletions browser/src/CopyNumberVariantList/CopyNumberVariants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import filterCopyNumberVariants from './filterCopyNumberVariants'
import CopyNumberVariantFilterControls from './CopyNumberVariantFilterControls'

import { cnvTypeColors } from './copyNumberVariantTypes'
import CopyNumberVariantPropType from './CopyNumberVariantPropType'
import { CopyNumberVariant } from '../CopyNumberVariantPage/CopyNumberVariantPage'
import copyNumberVariantTableColumns, {
getColumnsForContext,
} from './copyNumberVariantTableColumns'
Expand Down Expand Up @@ -48,7 +48,7 @@ export interface Context {
type CopyNumberVariantsProps = {
context: Context
exportFileName: string
variants: CopyNumberVariantPropType[]
variants: CopyNumberVariant[]
}

const CopyNumberVariants = ({ context, exportFileName, variants }: CopyNumberVariantsProps) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
[
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand All @@ -34,18 +35,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
},
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand All @@ -54,18 +56,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
},
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand Down Expand Up @@ -108,18 +111,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
[
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand All @@ -128,18 +132,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
},
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand All @@ -148,18 +153,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
},
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand Down Expand Up @@ -287,18 +293,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
[
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand All @@ -307,18 +314,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
},
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand All @@ -327,18 +335,19 @@ exports[`CopyNumberVariants has no unexpected changes 1`] = `
},
{
"alts": null,
"ancestry_groups": [],
"chrom": "21",
"end": 456,
"endmax": 100168742,
"endmin": 100168738,
"filters": [],
"genes": [],
"length": 333,
"populations": [],
"pos": 123,
"posmax": 100121284,
"posmin": 100121281,
"qual": 99,
"reference_genome": "GRCh38",
"sc": 123,
"sf": 0.5,
"sn": 345,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const copyNumberVariantTableColumns = [
if (variant.length === -1) {
s = '—'
} else {
const size = variant.length
const size = variant.length || 0
if (size >= 1e6) {
s = `${(size / 1e6).toPrecision(3)} Mb`
} else if (size >= 1e3) {
Expand Down
Loading
Loading