Human structural variants (hg19)
HG002 PacBio breakend structural variants on hg19.
View source — 34 lines
import { CircularGenomeView } from '@jbrowse/react-circular-genome-view2'
const assembly = {
name: 'hg19',
aliases: ['GRCh37'],
uri: 'https://jbrowse.org/genomes/hg19/fasta/hg19.fa.gz',
refNameAliases: {
uri: 'https://s3.amazonaws.com/jbrowse.org/genomes/hg19/hg19_aliases.txt',
},
}
const tracks = [
{
type: 'VariantTrack',
trackId: 'pacbio_sv_vcf',
name: 'HG002 Pacbio SV (VCF)',
assemblyNames: ['hg19'],
category: ['GIAB'],
adapter: {
type: 'VcfTabixAdapter',
uri: 'https://s3.amazonaws.com/jbrowse.org/genomes/hg19/pacbio/hs37d5.HG002-SequelII-CCS.bnd-only.sv.vcf.gz',
},
},
]
export default function Human() {
return (
<CircularGenomeView
assembly={assembly}
tracks={tracks}
init={{ tracks: ['pacbio_sv_vcf'] }}
/>
)
}